You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The url_for call returns an URL for /showcases (trailing s):
http://localhost:5000/showcases?tags=interaktiv
That URL is then redirected to /showcase (no trailing s), but the query parameters are lost:
Either the redirect should also forward the query parameters or url_for should return the correct URL. What's the rational behind having both /showcase and /showcases?
The text was updated successfully, but these errors were encountered:
I am dynamically constructing links for listing showcases by tag:
The
url_for
call returns an URL for/showcases
(trailings
):That URL is then redirected to
/showcase
(no trailings
), but the query parameters are lost:Either the redirect should also forward the query parameters or
url_for
should return the correct URL. What's the rational behind having both/showcase
and/showcases
?The text was updated successfully, but these errors were encountered: