mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-17 03:33:46 +01:00
remove async when there's nothing to await
This commit is contained in:
@@ -90,7 +90,7 @@ namespace Emby.Server.Implementations.Collections
|
||||
}).ToList()
|
||||
};
|
||||
|
||||
await parentFolder.AddChild(collection, CancellationToken.None).ConfigureAwait(false);
|
||||
parentFolder.AddChild(collection, CancellationToken.None);
|
||||
|
||||
if (options.ItemIdList.Length > 0)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user