From cd6fdb721c59bdb0d2f468ef7196c92311a83677 Mon Sep 17 00:00:00 2001 From: Alhaziel01 Date: Mon, 15 Jun 2020 18:46:31 +0200 Subject: [PATCH] ops --- platformcode/xbmc_videolibrary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platformcode/xbmc_videolibrary.py b/platformcode/xbmc_videolibrary.py index 61adf3d0..1f23f8fd 100644 --- a/platformcode/xbmc_videolibrary.py +++ b/platformcode/xbmc_videolibrary.py @@ -124,7 +124,7 @@ def resume_playback(item): head_nfo, item_nfo = videolibrarytools.read_nfo(nfo_path) # Show Window - if (config.get_setting("player_mode") not in [3] or item.play_from == 'window') and item_nfo.played_time > 0: + if (config.get_setting("player_mode") not in [3] or item.play_from == 'window') and item_nfo.played_time: Dialog = ResumePlayback('ResumePlayback.xml', config.get_runtime_path(), item=item_nfo) Dialog.show() t = 0