mirror of
https://github.com/morpheus65535/bazarr
synced 2025-02-07 06:53:40 +00:00
Merge pull request #866 from josdion/development
do not remove apostrophe when calling sanitize()
This commit is contained in:
commit
6b17838cac
1 changed files with 2 additions and 2 deletions
|
@ -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'
|
||||
|
|
Loading…
Reference in a new issue