sonarr-date #30

Merged
sbcrumb merged 2 commits from sonarr-date into dev 2025-10-05 10:43:34 -04:00
2 changed files with 4 additions and 3 deletions
Showing only changes of commit 5ade28c118 - Show all commits
+1 -1
View File
@@ -1 +1 @@
2.0.8
2.0.9
+3 -2
View File
@@ -131,8 +131,9 @@ class TVProcessor:
if not dateadded:
source = "external"
# Use air date as fallback for dateadded if available
if not dateadded and aired:
# ONLY use air date as fallback for dateadded if we have no Sonarr import date at all
# and if we couldn't get any import information from Sonarr history
if not dateadded and aired and source != "sonarr:history.import":
dateadded = aired
source = f"{source}_fallback" if source != "unknown" else "aired_fallback"