aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPCEWLKR <SeanAngelil0413@gmail.com>2026-05-27 19:20:21 -0400
committerPCEWLKR <SeanAngelil0413@gmail.com>2026-05-27 19:20:21 -0400
commitd085eb9d8719c0f3797593067ddf7715e19188d2 (patch)
treefc35777adcd3931d6a96eceb0d69a04eade0288b
parent2f17516d4bd8700e4a66f609b9c5fac835020407 (diff)
Use ConfigureAwait(false) in CollectionController.cs to maintain consistency with the existing async pattern
-rw-r--r--Jellyfin.Api/Controllers/CollectionController.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Controllers/CollectionController.cs b/Jellyfin.Api/Controllers/CollectionController.cs
index 227487b390..aa2b24c1e7 100644
--- a/Jellyfin.Api/Controllers/CollectionController.cs
+++ b/Jellyfin.Api/Controllers/CollectionController.cs
@@ -88,7 +88,7 @@ public class CollectionController : BaseJellyfinApiController
[FromRoute, Required] Guid collectionId,
[FromQuery, Required, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] Guid[] ids)
{
- await _collectionManager.AddToCollectionAsync(collectionId, ids).ConfigureAwait(true);
+ await _collectionManager.AddToCollectionAsync(collectionId, ids).ConfigureAwait(false);
return NoContent();
}