diff options
| author | Bond-009 <bond.009@outlook.com> | 2026-05-30 14:32:50 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-30 14:32:50 +0200 |
| commit | 99e9b2310f8a2c2a8bc630b31243df63507b1e17 (patch) | |
| tree | eff0c421ae847859e380facd445a5b95cb5d6aa6 | |
| parent | 2a95223c6718bf8892369322b8a30a45e430739f (diff) | |
| parent | d085eb9d8719c0f3797593067ddf7715e19188d2 (diff) | |
Use ConfigureAwait(false) in CollectionController
| -rw-r--r-- | Jellyfin.Api/Controllers/CollectionController.cs | 2 |
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(); } |
