diff options
| author | Patrick Barron <barronpm@gmail.com> | 2021-06-19 15:09:16 -0400 |
|---|---|---|
| committer | Patrick Barron <barronpm@gmail.com> | 2021-06-19 15:09:16 -0400 |
| commit | 3123ea2a9489caec908eb7932d73fa586235ab91 (patch) | |
| tree | baf2337ddb4d74b4753f3b01762571a6a22b02ba /Jellyfin.Api/Controllers/DevicesController.cs | |
| parent | 54fdc2fd889cd8c13f327b3e929482647a54329b (diff) | |
Add missing ConfigureAwait call
Diffstat (limited to 'Jellyfin.Api/Controllers/DevicesController.cs')
| -rw-r--r-- | Jellyfin.Api/Controllers/DevicesController.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Controllers/DevicesController.cs b/Jellyfin.Api/Controllers/DevicesController.cs index 8af7b8f73..d4c2dbba0 100644 --- a/Jellyfin.Api/Controllers/DevicesController.cs +++ b/Jellyfin.Api/Controllers/DevicesController.cs @@ -47,7 +47,7 @@ namespace Jellyfin.Api.Controllers [ProducesResponseType(StatusCodes.Status200OK)] public async Task<ActionResult<QueryResult<DeviceInfo>>> GetDevices([FromQuery] bool? supportsSync, [FromQuery] Guid? userId) { - return await _deviceManager.GetDevicesForUser(userId, supportsSync); + return await _deviceManager.GetDevicesForUser(userId, supportsSync).ConfigureAwait(false); } /// <summary> |
