From 3754af7bc577091525c035f6c606a395d25e4939 Mon Sep 17 00:00:00 2001 From: Matt Katz Date: Tue, 12 Mar 2024 21:55:49 -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 fa347150e..5f1f3fda4 100644 --- a/bookwyrm/urls.py +++ b/bookwyrm/urls.py @@ -573,7 +573,7 @@ urlpatterns = [ name="shelf", ), re_path( - rf"^{USER_PATH}/(shelf|books)/(?P[\w-]+)(/rss)?/?$", + rf"^{USER_PATH}/(shelf|books)/(?P[\w-]+)/rss/?$", views.rss_feed.RssShelfFeed(), name="shelf-rss", ),