mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-22 08:04:14 +01:00
Add ConfigureAwait true in MediaBrowser.Providers/MediaInfo/FFProbeVideoInfo.cs
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
This commit is contained in:
parent
0d8170cedb
commit
a9a53dc657
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue