From 576a85843dbd1834a8973aed6145ae0b9ddc1b2b Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Thu, 4 Sep 2025 10:29:04 -0400 Subject: Add Episode Metadata: Author and Original URL Enhance episode tracking by adding support for author and original article URL. This allows users to see more context about each podcast episode, improving the overall user experience and providing additional information about the source material. --- Biz/PodcastItLater/Worker.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Biz/PodcastItLater/Worker.py') diff --git a/Biz/PodcastItLater/Worker.py b/Biz/PodcastItLater/Worker.py index ce3d432..56a91bc 100644 --- a/Biz/PodcastItLater/Worker.py +++ b/Biz/PodcastItLater/Worker.py @@ -280,6 +280,8 @@ class ArticleProcessor: duration=duration, content_length=len(content), user_id=job.get("user_id"), + author=job.get("author"), # Pass author from job + original_url=url, # Pass the original article URL db_path=DATABASE_PATH, ) -- cgit v1.2.3