mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-06-27 18:40:31 +00:00
Fix typos
Found via `codespell -S resources`
This commit is contained in:
parent
7b1768f654
commit
1f48b62a93
6 changed files with 13 additions and 13 deletions
|
@ -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']
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue