From 565ade02a48075be6d69ac9844bcd8c897950968 Mon Sep 17 00:00:00 2001 From: Schnoop Date: Fri, 18 Nov 2022 20:07:46 +0100 Subject: [PATCH] Update main.js Revert trailing slash changes as this will lead to wrong urls. --- view/js/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/js/main.js b/view/js/main.js index e11585381..93340dc37 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -590,7 +590,7 @@ function liveUpdate(src) { var orgHeight = $("section").height(); - var udargs = ((netargs.length) ? netargs : ''); + var udargs = ((netargs.length) ? '/' + netargs : ''); var update_url = 'update_' + src + udargs + '&p=' + profile_uid + '&force=' + (force ? 1 : 0) + '&item=' + update_item;