Add missing call to ConfigureAwait()

This commit is contained in:
Mark Monteiro 2020-04-03 20:20:55 -04:00
parent 1f5caa46c5
commit 0e195d2e49
1 changed files with 1 additions and 1 deletions

View File

@ -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)
{