Skip to content

v2.6.9 — Fix NoneType Crashes Across Pipeline

Choose a tag to compare

@inafev inafev released this 19 Jun 08:44

Fixes

Inventory entries can have stars: null which caused TypeError: '<' not supported between instances of 'NoneType' and 'int' in three modules.

  • v2_optimizer.py :632 _calculate_tags — curator_stars calculation
  • dedup.py :74,108 — title dedup index and entry scoring
  • news_digest.py :322 — category pool sorting

Fix: replace .get("stars", 0) with .get("stars") or 0 which safely coerces None to 0.

🤖 Generated with Claude Code