Remove double slash when transcoding with a baseurl

This commit is contained in:
Matt 2021-05-16 21:26:30 -04:00
parent b6cd28e39c
commit dd81d1a3d7
1 changed files with 1 additions and 1 deletions

View File

@ -247,7 +247,7 @@ class PlayUtils(object):
video_type = 'live' if source['Protocol'] == 'LiveTV' else 'master' video_type = 'live' if source['Protocol'] == 'LiveTV' else 'master'
base = base.replace('stream' if 'stream' in base else 'master', video_type, 1) base = base.replace('stream' if 'stream' in base else 'master', video_type, 1)
self.info['Path'] = "%s/%s?%s" % (self.info['ServerAddress'], base, params) self.info['Path'] = "%s%s?%s" % (self.info['ServerAddress'], base, params)
self.info['Path'] += "&maxWidth=%s&maxHeight=%s" % (self.get_resolution()) self.info['Path'] += "&maxWidth=%s&maxHeight=%s" % (self.get_resolution())
else: else:
self.info['Path'] = "%s/%s" % (self.info['ServerAddress'], source['TranscodingUrl']) self.info['Path'] = "%s/%s" % (self.info['ServerAddress'], source['TranscodingUrl'])