KoD 1.7.5

- Aggiunti nuovi canali: 1337x e filmstreaming\n- fix cinemalibero, altadefinizione01\n- workaround per puntante non funzionanti quando si aggiorna la videoteca\n\n
This commit is contained in:
marco
2022-05-28 11:48:55 +02:00
parent 080bb798a1
commit 02239be925
22 changed files with 589 additions and 204 deletions
+5 -2
View File
@@ -93,19 +93,22 @@ def mark_auto_as_watched(item):
logger.debug('REOPEN')
item.played_time = actual_time
db['controls']['reopen'] = True
db.close()
platformtools.set_played_time(item)
# Silent sync with Trakt
if sync and config.get_setting("trakt_sync"): sync_trakt_kodi()
while platformtools.is_playing():
xbmc.sleep(100)
xbmc.sleep(300)
if next_episode and next_episode.next_ep and config.get_setting('next_ep') < 3:
from platformcode.launcher import run
xbmc.sleep(1000)
run(next_episode)
db.close()
# If it is configured to mark as seen
if config.get_setting("mark_as_watched", "videolibrary"):
threading.Thread(target=mark_as_watched_subThread, args=[item]).start()