Merge pull request #866 from josdion/development

do not remove apostrophe when calling sanitize()
This commit is contained in:
morpheus65535 2020-03-19 08:18:46 -04:00 committed by GitHub
commit 6b17838cac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -96,10 +96,10 @@ class YavkaNetProvider(Provider):
}
if isEpisode:
params['s'] = "%s s%02de%02d" % (sanitize(video.series), video.season, video.episode)
params['s'] = "%s s%02de%02d" % (sanitize(video.series, {'\''}), video.season, video.episode)
else:
params['y'] = video.year
params['s'] = video.title
params['s'] = sanitize(video.title, {'\''})
if language == 'en' or language == 'eng':
params['l'] = 'EN'