Revert "Fix resume when user chose to not resume"

This reverts commit 6e692d22c2.
This commit is contained in:
croneter 2019-05-26 12:30:49 +02:00
parent 6e692d22c2
commit 725416751f

View file

@ -344,8 +344,7 @@ class PlayQueue(object):
playlistitem = PlaylistItem(xml_video_element=xml) playlistitem = PlaylistItem(xml_video_element=xml)
playlistitem.part = api.part playlistitem.part = api.part
playlistitem.force_transcode = self.force_transcode playlistitem.force_transcode = self.force_transcode
playlistitem.resume = resume listitem = widgets.get_listitem(xml, resume=True)
listitem = widgets.get_listitem(xml, resume=resume)
listitem.setSubtitles(api.cache_external_subs()) listitem.setSubtitles(api.cache_external_subs())
play = PlayUtils(api, playlistitem) play = PlayUtils(api, playlistitem)
url = play.getPlayUrl() url = play.getPlayUrl()