Fix PKC wanting to initiate playback when it should not
This commit is contained in:
parent
ac285467c4
commit
885e8dd581
1 changed files with 4 additions and 2 deletions
|
@ -202,17 +202,19 @@ class PlayStrm(object):
|
||||||
PL.get_playlist_details_from_xml(self.playqueue, xml)
|
PL.get_playlist_details_from_xml(self.playqueue, xml)
|
||||||
# See that we add trailers, if they exist in the xml return
|
# See that we add trailers, if they exist in the xml return
|
||||||
self._add_intros(xml)
|
self._add_intros(xml)
|
||||||
|
# Add the main item
|
||||||
if seektime:
|
if seektime:
|
||||||
listitem = widgets.get_listitem(self.xml[0], resume=True)
|
listitem = widgets.get_listitem(self.xml[0], resume=True)
|
||||||
else:
|
else:
|
||||||
listitem = widgets.get_listitem(self.xml[0], resume=False)
|
listitem = widgets.get_listitem(self.xml[0], resume=False)
|
||||||
listitem.setSubtitles(self.api.cache_external_subs())
|
listitem.setSubtitles(self.api.cache_external_subs())
|
||||||
|
self.playqueue_item = PL.playlist_item_from_xml(self.xml[0])
|
||||||
play = PlayUtils(self.api, self.playqueue_item)
|
play = PlayUtils(self.api, self.playqueue_item)
|
||||||
url = play.getPlayUrl().encode('utf-8')
|
url = play.getPlayUrl().encode('utf-8')
|
||||||
listitem.setPath(url)
|
listitem.setPath(url)
|
||||||
self.playlist_add(url, listitem)
|
self.playlist_add(url, listitem)
|
||||||
if self.xml.get('PartCount'):
|
# Add additional file parts, if any exist
|
||||||
self._add_additional_parts()
|
self._add_additional_parts()
|
||||||
|
|
||||||
def _resume(self):
|
def _resume(self):
|
||||||
'''
|
'''
|
||||||
|
|
Loading…
Reference in a new issue