Fix typos

Found via `codespell -S resources`
This commit is contained in:
Kian-Meng Ang 2022-11-14 09:14:06 +08:00
parent 7b1768f654
commit 1f48b62a93
6 changed files with 13 additions and 13 deletions

View file

@ -411,17 +411,17 @@ class TVShows(KodiDb):
obj['Path'] = obj['Path'].replace(obj['Filename'], "")
'''check dvd directries and point it to ./VIDEO_TS/VIDEO_TS.IFO'''
'''check dvd directories and point it to ./VIDEO_TS/VIDEO_TS.IFO'''
if validate_dvd_dir(obj['Path'] + obj['Filename']):
obj['Path'] = obj['Path'] + obj['Filename'] + '/VIDEO_TS/'
obj['Filename'] = 'VIDEO_TS.IFO'
LOG.debug("DVD directry %s", obj['Path'])
LOG.debug("DVD directory %s", obj['Path'])
'''check bluray directries and point it to ./BDMV/index.bdmv'''
'''check bluray directories and point it to ./BDMV/index.bdmv'''
if validate_bluray_dir(obj['Path'] + obj['Filename']):
obj['Path'] = obj['Path'] + obj['Filename'] + '/BDMV/'
obj['Filename'] = 'index.bdmv'
LOG.debug("Bluray directry %s", obj['Path'])
LOG.debug("Bluray directory %s", obj['Path'])
else:
obj['Path'] = "plugin://plugin.video.jellyfin/%s/" % obj['SeriesId']