mirror of
https://github.com/morpheus65535/bazarr.git
synced 2024-11-10 09:02:44 +08:00
Fixed subtitulamos.tv improper matching. #1960
This commit is contained in:
parent
0980af1060
commit
8348b6c0dc
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue