Partial fix for #729 (only Shameless (US))

This commit is contained in:
Louis Vézina 2020-03-25 00:04:32 -04:00
parent bb59b9019f
commit d1a94638e1
1 changed files with 1 additions and 1 deletions

View File

@ -878,7 +878,7 @@ def refine_from_db(path, video):
"WHERE table_episodes.path = ?", (path_replace_reverse(path),), only_one=True)
if data:
video.series, year, country = series_re.match(data['seriesTitle']).groups()
video.series = data['seriesTitle']
video.season = int(data['season'])
video.episode = int(data['episode'])
video.title = data['episodeTitle']