浏览代码

fix: community function import

Timothy Jaeryang Baek 1 月之前
父节点
当前提交
72168b1586
共有 1 个文件被更改,包括 6 次插入1 次删除
  1. 6 1
      src/lib/components/admin/Functions.svelte

+ 6 - 1
src/lib/components/admin/Functions.svelte

@@ -626,7 +626,12 @@
 			const _functions = JSON.parse(event.target.result);
 			const _functions = JSON.parse(event.target.result);
 			console.log(_functions);
 			console.log(_functions);
 
 
-			for (const func of _functions) {
+			for (let func of _functions) {
+				if ('function' in func) {
+					// Required for Community JSON import
+					func = func.function;
+				}
+
 				const res = await createNewFunction(localStorage.token, func).catch((error) => {
 				const res = await createNewFunction(localStorage.token, func).catch((error) => {
 					toast.error(`${error}`);
 					toast.error(`${error}`);
 					return null;
 					return null;