From 2ee24ea13c8010a27de6edc8171bdba52fffca74 Mon Sep 17 00:00:00 2001 From: RhodeCode Admin Date: Thu, 27 Jul 2023 17:07:04 +0200 Subject: [PATCH] my-account: fixed pagination of unread messages --- rhodecode/apps/my_account/views/my_account_notifications.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rhodecode/apps/my_account/views/my_account_notifications.py b/rhodecode/apps/my_account/views/my_account_notifications.py index caff5d19..30593873 100644 --- a/rhodecode/apps/my_account/views/my_account_notifications.py +++ b/rhodecode/apps/my_account/views/my_account_notifications.py @@ -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,