diff --git a/netkan/netkan/auto_freezer.py b/netkan/netkan/auto_freezer.py index fe4841ac..fcdebec9 100644 --- a/netkan/netkan/auto_freezer.py +++ b/netkan/netkan/auto_freezer.py @@ -52,7 +52,8 @@ def _too_old(self, ident, update_cutoff): last_indexed = getattr(status, 'last_indexed', None) if not last_indexed: # Never indexed since the start of status tracking = 4+ years old - return True + # ... except for mods that were updated by the old webhooks :( + return False else: return last_indexed < update_cutoff