From 20f807c5c97df4bd61bd0bd1e470b27a41594d0a Mon Sep 17 00:00:00 2001 From: RealBeepMcJeep Date: Wed, 30 Aug 2023 07:49:26 -0700 Subject: [PATCH] async functions return promises silly --- server.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.js b/server.js index a32d1618a..60e77b98a 100644 --- a/server.js +++ b/server.js @@ -4963,7 +4963,7 @@ async function getImageBuffers(zipFilePath) { /** * This function extracts the extension information from the manifest file. * @param {string} extensionPath - The path of the extension folder - * @returns {Object} - Returns the manifest data as an object + * @returns {Promise} - Returns the manifest data as an object */ async function getManifest(extensionPath) { const manifestPath = path.join(extensionPath, 'manifest.json');