mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-07-24 23:37:31 +00:00
krypton update
This commit is contained in:
parent
bc07da703a
commit
0d5a89757f
3 changed files with 16 additions and 8 deletions
|
@ -99,14 +99,13 @@ class Actions(object):
|
|||
if get_play_action() == "Resume":
|
||||
seektime = True
|
||||
|
||||
if transcode and not seektime and resume:
|
||||
if transcode and not seektime:
|
||||
choice = self.resume_dialog(api.API(item, self.server).adjust_resume((resume or 0) / 10000000.0))
|
||||
|
||||
if choice is None:
|
||||
return
|
||||
raise Exception("User backed out of resume dialog.")
|
||||
|
||||
elif not choice:
|
||||
seektime = False
|
||||
seektime = False if not choice else True
|
||||
|
||||
if settings('enableCinema.bool') and not seektime:
|
||||
self._set_intros(item)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue