From 03d1d50a937435558d523ed7312348bd3bb9d3a1 Mon Sep 17 00:00:00 2001 From: WorldTeacher Date: Sat, 2 Aug 2025 21:47:09 +0200 Subject: [PATCH] chore: change log text for time_difference check --- src/logic/search.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/logic/search.py b/src/logic/search.py index 0316d9e..70245e8 100644 --- a/src/logic/search.py +++ b/src/logic/search.py @@ -478,14 +478,14 @@ class mangaCli: time_difference = time_checker(last_checked, today) # if time difference is less than set in the settings and the series status is not ended and the book count is not the same as the total book count, skip the entry - if time_difference >= config.komgrabber.cache_check_interval: + if time_difference > config.komgrabber.cache_check_interval: komga_series.append(serie) log.debug( - f"Added {serie.name} to the checking list, as the last check was {time_difference} days ago" + f"Added {serie.name} to the checking list, as the last check was more than {time_difference} days ago" ) else: log.debug( - f"Skipped {serie.name} as the last check was {time_difference} days ago, whereas the set interval is {config.komgrabber.cache_check_interval} days" + f"Skipped {serie.name} as the last check was {time_difference} days ago, but the interval is {config.komgrabber.cache_check_interval} days" ) time.sleep(0.005)