Improve score in Subdivx provider

This commit is contained in:
ngosang 2019-05-25 19:35:13 +02:00
parent 412dfd4d21
commit 561f5495fb
1 changed files with 4 additions and 21 deletions

View File

@ -38,30 +38,13 @@ class SubdivxSubtitle(Subtitle):
# episode
if isinstance(video, Episode):
# title / series
if video.series:
matches.add('title')
matches.add('series')
# season
if video.season:
matches.add('season')
# episode
if video.episode:
matches.add('episode')
# already matched in search query
matches.update(['title', 'series', 'season', 'episode', 'year'])
# movie
elif isinstance(video, Movie):
# title
if video.title:
matches.add('title')
# year
if video.year:
matches.add('year')
# already matched in search query
matches.update(['title', 'year'])
# release_group
if video.release_group and video.release_group.lower() in self.description: