Skip to content

Commit

Permalink
Merge pull request #175 from ManiMatter/fix-no-airDate
Browse files Browse the repository at this point in the history
Fixes #172 patch
  • Loading branch information
ManiMatter authored Oct 19, 2024
2 parents 6192c41 + 9e8763d commit 4600a97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jobs/run_periodic_rescans.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ async def run_periodic_rescans(
f">>> Running a scan for {len(records)} {end_point} items:\n"
+ "\n".join(
[
f"{episode['series']['title']} (Season {episode['seasonNumber']} / Episode {episode['episodeNumber']} / Aired: {episode['airDate']}): {episode['title']}"
f"{episode['series']['title']} (Season {episode['seasonNumber']} / Episode {episode['episodeNumber']} / Aired: {episode.get('airDate', 'Unknown')}): {episode['title']}"
for episode in records
]
)
Expand Down

0 comments on commit 4600a97

Please sign in to comment.