aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Playlists
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-08-26 20:32:33 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-08-26 20:32:33 -0400
commite287e3a50d0f83a43905c17434e928fd6d754d9f (patch)
tree4d24f51de4480cd7ff08b928e33dcbf5f6693a79 /Emby.Server.Implementations/Playlists
parent749a181fac6d4ebc77047d8b9dd262abe3bd40d5 (diff)
remove async when there's nothing to await
Diffstat (limited to 'Emby.Server.Implementations/Playlists')
-rw-r--r--Emby.Server.Implementations/Playlists/PlaylistManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Playlists/PlaylistManager.cs b/Emby.Server.Implementations/Playlists/PlaylistManager.cs
index 9b9596934a..87832e7dda 100644
--- a/Emby.Server.Implementations/Playlists/PlaylistManager.cs
+++ b/Emby.Server.Implementations/Playlists/PlaylistManager.cs
@@ -128,7 +128,7 @@ namespace Emby.Server.Implementations.Playlists
playlist.SetMediaType(options.MediaType);
- await parentFolder.AddChild(playlist, CancellationToken.None).ConfigureAwait(false);
+ parentFolder.AddChild(playlist, CancellationToken.None);
await playlist.RefreshMetadata(new MetadataRefreshOptions(_fileSystem) { ForceSave = true }, CancellationToken.None)
.ConfigureAwait(false);