Fix Episodio Successivo

This commit is contained in:
Alhaziel
2020-01-08 20:52:37 +01:00
parent c19a506be7
commit 31ae3b7d9e
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -467,7 +467,7 @@ def play_from_library(item):
if xbmc.getCondVisibility('Window.IsMedia') and not window_type == 1: if xbmc.getCondVisibility('Window.IsMedia') and not window_type == 1:
# Ventana convencional # Ventana convencional
xbmc.executebuiltin("Container.Update(" + sys.argv[0] + "?" + item.tourl() + ")") xbmc.executebuiltin("Container.Update(" + sys.argv[0] + "?" + item.tourl() + ")")
if config.get_setting('next_ep') > 0: if config.get_setting('next_ep') > 0 and item.contentType != 'movie':
from specials.nextep import afther_stop from specials.nextep import afther_stop
afther_stop(item) afther_stop(item)
+1
View File
@@ -7,6 +7,7 @@ from core import jsontools, filetools
def afther_stop(item): def afther_stop(item):
logger.info()
condition = config.get_setting('next_ep') condition = config.get_setting('next_ep')
if condition == 1: # Hide servers afther stop video if condition == 1: # Hide servers afther stop video