fix opensubtitles imdb comparison

This commit is contained in:
vitiko98 2020-10-18 13:09:25 -04:00
parent 2daa410a5f
commit 752c4a2142
1 changed files with 2 additions and 1 deletions

View File

@ -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")