diff options
| author | Jonas Resch <32968142+jonas-resch@users.noreply.github.com> | 2021-11-30 20:45:21 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-30 20:45:21 +0100 |
| commit | a9a53dc6579184edfb70ce289c06176e769d5280 (patch) | |
| tree | 699d1cfc3171b0ba4dba2cac7726d18027f722a3 | |
| parent | 0d8170cedb1fd711e5c2d09d458467cccdd7874a (diff) | |
Add ConfigureAwait true in MediaBrowser.Providers/MediaInfo/FFProbeVideoInfo.cs
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
| -rw-r--r-- | MediaBrowser.Providers/MediaInfo/FFProbeVideoInfo.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Providers/MediaInfo/FFProbeVideoInfo.cs b/MediaBrowser.Providers/MediaInfo/FFProbeVideoInfo.cs index b31f0ed23..542e56256 100644 --- a/MediaBrowser.Providers/MediaInfo/FFProbeVideoInfo.cs +++ b/MediaBrowser.Providers/MediaInfo/FFProbeVideoInfo.cs @@ -217,7 +217,7 @@ namespace MediaBrowser.Providers.MediaInfo await AddExternalSubtitles(video, mediaStreams, options, cancellationToken).ConfigureAwait(false); - await AddExternalAudio(video, mediaStreams, options, cancellationToken); + await AddExternalAudio(video, mediaStreams, options, cancellationToken).ConfigureAwait(false); var libraryOptions = _libraryManager.GetLibraryOptions(video); |
