aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.MediaEncoding/Attachments
diff options
context:
space:
mode:
authorMark Monteiro <marknr.monteiro@protonmail.com>2020-04-03 20:20:55 -0400
committerMark Monteiro <marknr.monteiro@protonmail.com>2020-04-03 20:20:55 -0400
commit0e195d2e49f4ee9979182603a356fdb7af8d98cf (patch)
tree3f635a6c15c13abdaef8bc98ce6604ff4cfe1cdf /MediaBrowser.MediaEncoding/Attachments
parent1f5caa46c53dde25ecf4482715333c049cb7e085 (diff)
Add missing call to ConfigureAwait()
Diffstat (limited to 'MediaBrowser.MediaEncoding/Attachments')
-rw-r--r--MediaBrowser.MediaEncoding/Attachments/AttachmentExtractor.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.MediaEncoding/Attachments/AttachmentExtractor.cs b/MediaBrowser.MediaEncoding/Attachments/AttachmentExtractor.cs
index d97634731..48240d5b6 100644
--- a/MediaBrowser.MediaEncoding/Attachments/AttachmentExtractor.cs
+++ b/MediaBrowser.MediaEncoding/Attachments/AttachmentExtractor.cs
@@ -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)
{