Fixed subtitulamos.tv improper matching. #1960

This commit is contained in:
morpheus65535 2022-09-29 06:28:54 -04:00
parent 0980af1060
commit 8348b6c0dc

View file

@ -34,7 +34,7 @@ class SubtitulamosTVSubtitle(Subtitle):
if video.release_group and video.release_group.lower() in self.release_info.lower():
matches.add('release_group')
matches = guess_matches(video, guessit(self.release_info, {"type": "episode"}))
matches |= guess_matches(video, guessit(self.release_info, {"type": "episode"}))
return matches