From 20f6703f794c6d1e48977b130bb71b5a0fef6172 Mon Sep 17 00:00:00 2001 From: Kijin Sung Date: Sat, 14 Jun 2025 15:53:43 +0900 Subject: [PATCH] Revert "Call Rhymix.ajax() in procFilter()" Don't call new function from legacy function This reverts commit 64f0ffbd91750c03acb5a3a4a3c82c042e25e6dd. --- common/js/xml_js_filter.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/js/xml_js_filter.js b/common/js/xml_js_filter.js index 83459d213..414c175d8 100644 --- a/common/js/xml_js_filter.js +++ b/common/js/xml_js_filter.js @@ -467,13 +467,13 @@ function legacy_filter(filter_name, form, module, act, callback, responses, conf }; if (!hasFile) { - Rhymix.ajax(module + '.' + act, params, callback_wrapper); + exec_json(module + '.' + act, params, callback_wrapper); } else { var fd = new FormData(); for (let key in params) { fd.append(key, params[key]); } - Rhymix.ajax(null, fd, callback_wrapper); + exec_json('raw', fd, callback_wrapper); } };