diff options
| author | Jonas Resch <32968142+jonas-resch@users.noreply.github.com> | 2021-12-08 16:49:27 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-08 16:49:27 +0100 |
| commit | 65833076dbc574cc830fdd370a3a6127cfdc3bcf (patch) | |
| tree | d938b993e4532e78790a1c1a4d336dc8185a4aec | |
| parent | e18d966874cbdcab16ee99571d88147a9ac198fb (diff) | |
Add "Async" suffix to AddExternalAudio method
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 07d87e607..77372e063 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).ConfigureAwait(false); + await AddExternalAudioAsync(video, mediaStreams, options, cancellationToken).ConfigureAwait(false); var libraryOptions = _libraryManager.GetLibraryOptions(video); |
