my-account: fixed pagination of unread messages

This commit is contained in:
RhodeCode Admin 2023-07-27 17:07:04 +02:00
parent 23a77bc66d
commit 2ee24ea13c

View file

@ -73,7 +73,9 @@ class MyAccountNotificationsView(BaseAppView):
'page': page_num
}
_query = self.request.GET.mixed()
query_params.update(_query)
_query.update(query_params)
query_params = _query
return self.request.current_route_path(_query=query_params)
c.notifications = SqlPage(notifications, page=p, items_per_page=10,