fix(archive): skip categories with zero or unset days config
All checks were successful
Auto Changelog & (Release) / release (push) Successful in 6s
Build and Publish nightly package / build-and-publish (push) Successful in 31s

This commit is contained in:
2025-11-27 19:57:41 +01:00
parent 31c3f7d438
commit 39f01b266f

View File

@@ -69,6 +69,9 @@ def run(
continue continue
if category and cat.config.name not in category: if category and cat.config.name not in category:
continue continue
if cat.config.days == 0 or cat.config.days is None:
continue
limit_days = cat.config.days if cat.config.days is not None else older_than limit_days = cat.config.days if cat.config.days is not None else older_than