From 47025bec2ab1a127bc4fe9fa010876e3e3928d06 Mon Sep 17 00:00:00 2001 From: Andrew Date: Tue, 12 Apr 2022 17:38:05 -0400 Subject: [PATCH] Make helper not static when unzipping. --- app/classes/web/ajax_handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/classes/web/ajax_handler.py b/app/classes/web/ajax_handler.py index 1420b78a..49eeec9e 100644 --- a/app/classes/web/ajax_handler.py +++ b/app/classes/web/ajax_handler.py @@ -422,7 +422,7 @@ class AjaxHandler(BaseHandler): elif page == "unzip_server": path = self.get_argument("path", None) if Helpers.check_file_exists(path): - Helpers.unzipServer(path, exec_user["user_id"]) + self.helper.unzipServer(path, exec_user["user_id"]) else: user_id = exec_user["user_id"] if user_id: