mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-21 01:42:22 +02:00
Add missing call to ConfigureAwait()
This commit is contained in:
parent
1f5caa46c5
commit
0e195d2e49
1 changed files with 1 additions and 1 deletions
|
|
@ -173,7 +173,7 @@ namespace MediaBrowser.MediaEncoding.Attachments
|
|||
|
||||
process.Start();
|
||||
|
||||
var ranToCompletion = await process.WaitForExitAsync(cancellationToken);
|
||||
var ranToCompletion = await process.WaitForExitAsync(cancellationToken).ConfigureAwait(false);
|
||||
|
||||
if (!ranToCompletion)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue