You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ponymail.apache.org by se...@apache.org on 2022/01/04 14:03:13 UTC

[incubator-ponymail-foal] 02/03: Rename parameter

This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git

commit 74baa11606b558a9934c0524663e812958a0835a
Author: Sebb <se...@apache.org>
AuthorDate: Tue Jan 4 14:01:05 2022 +0000

    Rename parameter
---
 webui/js/source/primer.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/webui/js/source/primer.js b/webui/js/source/primer.js
index 2ea27af..0a7adf4 100644
--- a/webui/js/source/primer.js
+++ b/webui/js/source/primer.js
@@ -166,7 +166,7 @@ function parse_permalink() {
     GET('%sapi/preferences.lua'.format(G_apiURL), init_preferences, null);
     // Fetch the thread data and pass to build_single_thread
     if (list_id) {
-        GET('%sapi/thread.lua?id=%s&list=%s'.format(G_apiURL, mid, list_id), construct_single_thread, {
+        GET('%sapi/thread.lua?id=%s&listid=%s'.format(G_apiURL, mid, list_id), construct_single_thread, {
             cached: true
         });
     }