aboutsummaryrefslogtreecommitdiffstats
path: root/view/js/main.js
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2019-10-22 08:38:55 +0000
committerMario <mario@mariovavti.com>2019-10-22 10:39:54 +0200
commit045cb461f135bbe1765d83022fc29f45c1e78ec5 (patch)
tree9950bd80f480066385e082f61c9ea5915339c312 /view/js/main.js
parent088c0eedc639c952b0054ced459c802f56e9aead (diff)
downloadvolse-hubzilla-045cb461f135bbe1765d83022fc29f45c1e78ec5.tar.gz
volse-hubzilla-045cb461f135bbe1765d83022fc29f45c1e78ec5.tar.bz2
volse-hubzilla-045cb461f135bbe1765d83022fc29f45c1e78ec5.zip
fix encoding issue
(cherry picked from commit 067010fc0a5a6c10825b869b822c9cfbb3d4516b)
Diffstat (limited to 'view/js/main.js')
-rw-r--r--view/js/main.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/view/js/main.js b/view/js/main.js
index 2b4acdf61..f3b8151b0 100644
--- a/view/js/main.js
+++ b/view/js/main.js
@@ -1058,7 +1058,7 @@ function pageUpdate() {
bParam_page = 1;
}
- update_url = baseurl + '/' + page_query + '/?f=&aj=1&page=' + bParam_page + extra_args ;
+ update_url = baseurl + '/' + decodeURIComponent(page_query) + '/?f=&aj=1&page=' + bParam_page + extra_args ;
$("#page-spinner").show();
update_mode = 'append';