diff options
| author | Bond-009 <bond.009@outlook.com> | 2021-10-20 14:22:59 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-20 14:22:59 +0200 |
| commit | 39bd5590012559a61c9a7a81c87ba734823a2974 (patch) | |
| tree | 142163bbca8ceeef2f846a7aae5b931b38a38435 /Jellyfin.Api/Controllers/SubtitleController.cs | |
| parent | 7d8fb947b65638c41a9f6475306a1b81c577f089 (diff) | |
| parent | ade3afad418f6fb29b2834d515a851ff3941a511 (diff) | |
Merge pull request #6718 from MBR-0001/master
Diffstat (limited to 'Jellyfin.Api/Controllers/SubtitleController.cs')
| -rw-r--r-- | Jellyfin.Api/Controllers/SubtitleController.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Controllers/SubtitleController.cs b/Jellyfin.Api/Controllers/SubtitleController.cs index 8fb85c732..db8307f28 100644 --- a/Jellyfin.Api/Controllers/SubtitleController.cs +++ b/Jellyfin.Api/Controllers/SubtitleController.cs @@ -127,7 +127,7 @@ namespace Jellyfin.Api.Controllers { var video = (Video)_libraryManager.GetItemById(itemId); - return await _subtitleManager.SearchSubtitles(video, language, isPerfectMatch, CancellationToken.None).ConfigureAwait(false); + return await _subtitleManager.SearchSubtitles(video, language, isPerfectMatch, false, CancellationToken.None).ConfigureAwait(false); } /// <summary> |
