Make unzip_server snake case

This commit is contained in:
Andrew 2022-04-14 19:45:13 -04:00
parent 2dc85e6f27
commit 9fcd510be2

View File

@ -424,7 +424,7 @@ class AjaxHandler(BaseHandler):
elif page == "unzip_server": elif page == "unzip_server":
path = self.get_argument("path", None) path = self.get_argument("path", None)
if Helpers.check_file_exists(path): if Helpers.check_file_exists(path):
self.helper.unzipServer(path, exec_user["user_id"]) self.helper.unzip_server(path, exec_user["user_id"])
else: else:
user_id = exec_user["user_id"] user_id = exec_user["user_id"]
if user_id: if user_id: