diff --git a/platformcode/xbmc_videolibrary.py b/platformcode/xbmc_videolibrary.py index b897b6f8..ca43bfad 100644 --- a/platformcode/xbmc_videolibrary.py +++ b/platformcode/xbmc_videolibrary.py @@ -57,7 +57,7 @@ def mark_auto_as_watched(item): difference = total_time - actual_time # Mark as Watched - if actual_time > mark_time and not marked: + if mark_time and total_time > actual_time > mark_time and not marked: logger.info("Marked as Watched") item.playcount = 1 marked = True