From 9f1aea1f5c9d86011d48b060e2c7e5b603f42381 Mon Sep 17 00:00:00 2001 From: Eloi Torrents Date: Fri, 5 Sep 2025 10:17:24 +0200 Subject: [PATCH] Add enrich_msg params --- src/rss.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rss.py b/src/rss.py index ab126dd..47d6715 100644 --- a/src/rss.py +++ b/src/rss.py @@ -39,7 +39,7 @@ def _is_image_token(token: str, extensions): return len(parts) == 2 and parts[1] in extensions # this is similar to the markup function in microblog -def enrich_msg(lines, is_atom=True): +def enrich_msg(lines, is_atom=True, image_extensions=[], base_url=None): if not is_atom: return lines content = []