From 8febeae74b042b5339ea675b5f3b50555767aa8e Mon Sep 17 00:00:00 2001 From: Corban-Lee Date: Tue, 11 Jun 2024 20:48:06 +0100 Subject: [PATCH] use external api host --- src/extensions/rss.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extensions/rss.py b/src/extensions/rss.py index 55d83a9..73951b6 100644 --- a/src/extensions/rss.py +++ b/src/extensions/rss.py @@ -337,7 +337,7 @@ class FeedCog(commands.Cog): channels = f"{item.channels_count}{' channels' if item.channels_count != 1 else ' channel'}" filters = f"{len(item.filters)}{' filters' if len(item.filters) != 1 else ' filter'}" notes = item.extra_notes[:25] + "..." if len(item.extra_notes) > 28 else item.extra_notes - links = f"[RSS URL]({item.url}) · [API URL]({API.API_ENDPOINT}subscription/{item.id}/)" + links = f"[RSS URL]({item.url}) · [API URL]({API.API_EXTERNAL_ENDPOINT}subscription/{item.id}/)" description = f"{channels}, {filters}\n" description += f"{notes}\n" if notes else ""