Episodio successivo spostato in platformtools:

- Funziona in Videoteca di Kod
 - Permette la ripresa della funzione dopo lo stop
This commit is contained in:
Alhaziel
2020-01-09 20:06:21 +01:00
parent 72512f9d80
commit dd08336865
2 changed files with 8 additions and 7 deletions
-6
View File
@@ -467,9 +467,6 @@ def play_from_library(item):
if xbmc.getCondVisibility('Window.IsMedia') and not window_type == 1:
# Ventana convencional
xbmc.executebuiltin("Container.Update(" + sys.argv[0] + "?" + item.tourl() + ")")
if config.get_setting('next_ep') > 0 and item.contentType != 'movie':
from specials.nextep import afther_stop
afther_stop(item)
else:
# Ventana emergente
@@ -535,6 +532,3 @@ def play_from_library(item):
if (platformtools.is_playing() and item.action) or item.server == 'torrent' or autoplay.is_active(item.contentChannel):
break
if config.get_setting('next_ep') > 0 and item.contentType != 'movie':
from specials.nextep import afther_stop
afther_stop(item)