Correctly format meta URLs
This commit is contained in:
parent
19c45fba8a
commit
6b53c42f14
1 changed files with 1 additions and 1 deletions
|
@ -274,7 +274,7 @@ class BaseListingPage(RoutablePageMixin, BaseContentPage):
|
|||
query_data = self.serializer.validated_data.copy()
|
||||
if query_data["page"] == 1:
|
||||
del query_data["page"]
|
||||
return super().get_meta_url() + urlencode(query_data)
|
||||
return super().get_meta_url() + "?" + urlencode(query_data)
|
||||
|
||||
@route(r"^feed/$")
|
||||
@method_decorator(cache_page(60 * 30))
|
||||
|
|
Loading…
Reference in a new issue