mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-02-24 23:07:36 +08:00
Merge pull request #1160 from vitiko98/opensubtitles
Fix OpenSubtitles imdb comparison
This commit is contained in:
commit
467dc39b87
1 changed files with 2 additions and 1 deletions
|
@ -4,6 +4,7 @@ import base64
|
|||
import logging
|
||||
import os
|
||||
import traceback
|
||||
import re
|
||||
import zlib
|
||||
import time
|
||||
import requests
|
||||
|
@ -329,7 +330,7 @@ class OpenSubtitlesProvider(ProviderRetryMixin, _OpenSubtitlesProvider):
|
|||
if language not in languages:
|
||||
continue
|
||||
|
||||
if video.imdb_id and (movie_imdb_id != video.imdb_id):
|
||||
if video.imdb_id and (movie_imdb_id != re.sub("(?<![^a-zA-Z])0+","", video.imdb_id)):
|
||||
continue
|
||||
|
||||
query_parameters = _subtitle_item.get("QueryParameters")
|
||||
|
|
Loading…
Reference in a new issue