Add missing call to ConfigureAwait()

pull/2680/head
Mark Monteiro 4 years ago
parent 1f5caa46c5
commit 0e195d2e49

@ -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…
Cancel
Save