Fix possible IndexError
This commit is contained in:
parent
501a7ddbd9
commit
4d555a9314
1 changed files with 4 additions and 3 deletions
|
@ -9,6 +9,7 @@ import xbmcgui
|
||||||
import xbmcvfs
|
import xbmcvfs
|
||||||
|
|
||||||
from utils import window, settings, tryEncode, language as lang
|
from utils import window, settings, tryEncode, language as lang
|
||||||
|
import variables as v
|
||||||
|
|
||||||
import PlexAPI
|
import PlexAPI
|
||||||
|
|
||||||
|
@ -160,11 +161,11 @@ class PlayUtils():
|
||||||
- video bitrate above specified settings bitrate
|
- video bitrate above specified settings bitrate
|
||||||
if the corresponding file settings are set to 'true'
|
if the corresponding file settings are set to 'true'
|
||||||
"""
|
"""
|
||||||
videoCodec = self.API.getVideoCodec()
|
if self.API.getType() in (v.PLEX_TYPE_CLIP, v.PLEX_TYPE_SONG):
|
||||||
log.info("videoCodec: %s" % videoCodec)
|
|
||||||
if self.API.getType() in ('clip', 'track'):
|
|
||||||
log.info('Plex clip or music track, not transcoding')
|
log.info('Plex clip or music track, not transcoding')
|
||||||
return False
|
return False
|
||||||
|
videoCodec = self.API.getVideoCodec()
|
||||||
|
log.info("videoCodec: %s" % videoCodec)
|
||||||
if window('plex_forcetranscode') == 'true':
|
if window('plex_forcetranscode') == 'true':
|
||||||
log.info('User chose to force-transcode')
|
log.info('User chose to force-transcode')
|
||||||
return True
|
return True
|
||||||
|
|
Loading…
Reference in a new issue