aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Playlists
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2017-04-29 22:45:28 -0400
committerGitHub <noreply@github.com>2017-04-29 22:45:28 -0400
commit6cce89d22e37952a1c052d1d51089bc88fef6f1b (patch)
tree35386f3e09af11dd898ba6e09d1340844926be22 /Emby.Server.Implementations/Playlists
parentb7226b86674bde314d489a59ce65118d1f14fa37 (diff)
parent7ef16a449ae044306227da00a83f5abe062fb893 (diff)
Merge pull request #2603 from MediaBrowser/dev
Dev
Diffstat (limited to 'Emby.Server.Implementations/Playlists')
-rw-r--r--Emby.Server.Implementations/Playlists/PlaylistManager.cs6
1 files changed, 4 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/Playlists/PlaylistManager.cs b/Emby.Server.Implementations/Playlists/PlaylistManager.cs
index 386da73c6..18042b587 100644
--- a/Emby.Server.Implementations/Playlists/PlaylistManager.cs
+++ b/Emby.Server.Implementations/Playlists/PlaylistManager.cs
@@ -201,7 +201,8 @@ namespace Emby.Server.Implementations.Playlists
_providerManager.QueueRefresh(playlist.Id, new MetadataRefreshOptions(_fileSystem)
{
ForceSave = true
- });
+
+ }, RefreshPriority.High);
}
public async Task RemoveFromPlaylist(string playlistId, IEnumerable<string> entryIds)
@@ -228,7 +229,8 @@ namespace Emby.Server.Implementations.Playlists
_providerManager.QueueRefresh(playlist.Id, new MetadataRefreshOptions(_fileSystem)
{
ForceSave = true
- });
+
+ }, RefreshPriority.High);
}
public async Task MoveItem(string playlistId, string entryId, int newIndex)