aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2026-05-30 14:32:50 +0200
committerGitHub <noreply@github.com>2026-05-30 14:32:50 +0200
commit99e9b2310f8a2c2a8bc630b31243df63507b1e17 (patch)
treeeff0c421ae847859e380facd445a5b95cb5d6aa6
parent2a95223c6718bf8892369322b8a30a45e430739f (diff)
parentd085eb9d8719c0f3797593067ddf7715e19188d2 (diff)
Merge pull request #16953 from PCEWLKR/fix-configureawait-collectioncontrollerHEADmaster
Use ConfigureAwait(false) in CollectionController
-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();
}