From a2e41faf692ba466fa2e81776649795be5b76ae8 Mon Sep 17 00:00:00 2001 From: Matt Katz Date: Tue, 12 Mar 2024 21:56:14 -0400 Subject: [PATCH] /rss shouldn't be optional in the rss route MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Adeodato Simó <73768+dato@users.noreply.github.com> --- bookwyrm/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bookwyrm/urls.py b/bookwyrm/urls.py index 5f1f3fda4..b1bfa6fec 100644 --- a/bookwyrm/urls.py +++ b/bookwyrm/urls.py @@ -583,7 +583,7 @@ urlpatterns = [ name="shelf", ), re_path( - rf"^{LOCAL_USER_PATH}/(books|shelf)/(?P[\w-]+)(/rss)?/?$", + rf"^{LOCAL_USER_PATH}/(books|shelf)/(?P[\w-]+)/rss/?$", views.rss_feed.RssShelfFeed(), name="shelf-rss", ),