From f0a34df7c63d95645027cb838ef8bd0f4ae15b4f Mon Sep 17 00:00:00 2001 From: Tzahi12345 Date: Fri, 21 Apr 2023 16:48:24 -0400 Subject: [PATCH] Fixed syntax error in utils --- backend/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/utils.js b/backend/utils.js index 21c0e50..eafb946 100644 --- a/backend/utils.js +++ b/backend/utils.js @@ -92,7 +92,7 @@ exports.createZipFile = async (zip_file_path, file_paths) => { await archive.finalize(); // wait a tiny bit for the zip to reload in fs - await wait(100); + await exports.wait(100); return zip_file_path; }