Fix Segna come già visto

This commit is contained in:
Alhaziel01
2021-12-17 19:38:51 +01:00
parent a3bfb3b184
commit c92fbd38bb

View File

@@ -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