Merge pull request #450 from ngosang/feature/subdivx2

Improve score in Subdivx provider
This commit is contained in:
morpheus65535 2019-05-25 13:37:51 -04:00 committed by GitHub
commit 4c864ff58e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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: