From 0c73848cbc018508211c2edcb2ca94103c3b05df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Hells=C3=A9n?= Date: Tue, 30 Jul 2024 01:17:16 +0200 Subject: [PATCH] Make author_url be the entry link as default --- discord_rss_bot/settings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/discord_rss_bot/settings.py b/discord_rss_bot/settings.py index ae18ca9..6bfcb2f 100644 --- a/discord_rss_bot/settings.py +++ b/discord_rss_bot/settings.py @@ -30,6 +30,7 @@ default_custom_message: JSONType | str = "{{entry_title}}\n{{entry_link}}" default_custom_embed: dict[str, str] = { "title": "{{entry_title}}", "description": "{{entry_text}}", + "author_url": "{{entry_link}}", "image_url": "{{image_1}}", "color": "#469ad9", }