diff --git a/resources/lib/api.py b/resources/lib/api.py index 3c8952b0..ddaa0975 100644 --- a/resources/lib/api.py +++ b/resources/lib/api.py @@ -390,12 +390,10 @@ class API(object): filepath = filepath.replace("\\\\", "smb://") filepath = filepath.replace("\\", "/") - if self.item.get('VideoType'): - videotype = self.item['VideoType'] - # Specific format modification - if 'Dvd'in videotype: + if 'VideoType' in self.item: + if self.item['VideoType'] == "Dvd": filepath = "%s/VIDEO_TS/VIDEO_TS.IFO" % filepath - elif 'BluRay' in videotype: + elif self.item['VideoType'] == "BluRay": filepath = "%s/BDMV/index.bdmv" % filepath if "\\" in filepath: diff --git a/resources/lib/playutils.py b/resources/lib/playutils.py index cab4124d..578de9c0 100644 --- a/resources/lib/playutils.py +++ b/resources/lib/playutils.py @@ -202,6 +202,11 @@ class PlayUtils(): path = path.replace('\\\\', "smb://") path = path.replace('\\', "/") + if "://" in path: + # Protocol needs to be lowercase, otherwise weird things happen. + protocol = path.split('://')[0] + path = path.replace(protocol, protocol.lower()) + return path def get_http_path(self, source, transcode=False):