This commit is contained in:
2025-05-13 19:24:54 +10:00
parent 37ad5349ac
commit 660ca33ee4
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -440,7 +440,7 @@ def curate_from_reddit(post, original_source, source_name, link, page_url):
return None, None
except Exception as e:
logger.error(f"Error curating Reddit post '{post.get('title', 'unknown')}': {e}")
logger.error(f"Error curating Reddit post '{getattr(post, 'title', 'unknown')}': {e}")
return None, None
def run_reddit_automator():
+1 -1
View File
@@ -362,7 +362,7 @@ def curate_from_rss(entry, original_source, source_name, link, page_url):
return None, None
except Exception as e:
logger.error(f"Error curating RSS entry '{entry.get('title', 'unknown')}': {e}")
logger.error(f"Error curating RSS entry '{getattr(entry, 'title', 'unknown')}': {e}")
return None, None
def run_rss_automator():