mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-06-04 06:04:25 -04:00
Add missing call to ConfigureAwait()
This commit is contained in:
parent
1f5caa46c5
commit
0e195d2e49
@ -173,7 +173,7 @@ namespace MediaBrowser.MediaEncoding.Attachments
|
|||||||
|
|
||||||
process.Start();
|
process.Start();
|
||||||
|
|
||||||
var ranToCompletion = await process.WaitForExitAsync(cancellationToken);
|
var ranToCompletion = await process.WaitForExitAsync(cancellationToken).ConfigureAwait(false);
|
||||||
|
|
||||||
if (!ranToCompletion)
|
if (!ranToCompletion)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user