You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ponymail.apache.org by hu...@apache.org on 2021/09/21 20:14:03 UTC

[incubator-ponymail-foal] 03/04: fix GET as well

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

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

commit 637265cf2e8c8b966b9f8be0c6d6a9a6e9474864
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Tue Sep 21 15:12:55 2021 -0500

    fix GET as well
---
 webui/js/source/sidebar-calendar.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/webui/js/source/sidebar-calendar.js b/webui/js/source/sidebar-calendar.js
index c62b7bc..0c9ecc5 100644
--- a/webui/js/source/sidebar-calendar.js
+++ b/webui/js/source/sidebar-calendar.js
@@ -179,8 +179,8 @@ function calendar_click(year, month) {
     if (location.href !== newhref) {
         window.history.pushState({}, null, newhref);
     }
-    GET('%sapi/stats.lua?list=%s&domain=%s&d=%u-%u&q=%s'.format(apiURL, current_list, current_domain, year, month, q), renderListView, {
-        to: '%s@%s'.format(current_list, current_domain),
+    GET('%sapi/stats.lua?list=%s&domain=%s&d=%u-%u&q=%s'.format(apiURL, calendar_current_list, calendar_current_domain, year, month, q), renderListView, {
+        to: '%s@%s'.format(calendar_current_list, calendar_current_domain),
         update_calendar: false
     });
 }