diff options
author | Vitiko <[email protected]> | 2023-03-30 17:26:21 -0400 |
---|---|---|
committer | Vitiko <[email protected]> | 2023-03-30 17:26:21 -0400 |
commit | 1427a8ab733685f0813e5c07b38dca6bf92453dd (patch) | |
tree | afb079757ba0453d334700d135e2599387f8b601 /libs | |
parent | ef67cd4792b365521a2d9e38f5d998d6556f2c08 (diff) | |
download | bazarr-1427a8ab733685f0813e5c07b38dca6bf92453dd.tar.gz bazarr-1427a8ab733685f0813e5c07b38dca6bf92453dd.zip |
SuperSubtitles provider: fix episode matchingv1.2.1-beta.13
Diffstat (limited to 'libs')
-rw-r--r-- | libs/subliminal_patch/providers/supersubtitles.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/subliminal_patch/providers/supersubtitles.py b/libs/subliminal_patch/providers/supersubtitles.py index e19bf629e..583bad581 100644 --- a/libs/subliminal_patch/providers/supersubtitles.py +++ b/libs/subliminal_patch/providers/supersubtitles.py @@ -95,7 +95,7 @@ class SuperSubtitlesSubtitle(Subtitle): def get_matches(self, video): matches = set() - update_matches(matches, video, self.releases) + update_matches(matches, video, self.release_info) # episode if isinstance(video, Episode): |