From 4e3bc358acf9324e4a91019d7f9de357065e015f Mon Sep 17 00:00:00 2001 From: Andres Date: Mon, 9 Jun 2025 22:03:02 +0200 Subject: [PATCH] update lua table parser --- src/app/(home)/log-parser/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/(home)/log-parser/page.tsx b/src/app/(home)/log-parser/page.tsx index bf180a9..98aa795 100644 --- a/src/app/(home)/log-parser/page.tsx +++ b/src/app/(home)/log-parser/page.tsx @@ -1418,7 +1418,7 @@ type JsonValue = | JsonValue[] | { [key: string]: JsonValue } -async function luaTableToJson(luaString: string): string { +async function luaTableToJson(luaString: string) { const str = luaString.replace(/^return\s*/, '') return LuaToJsonConverter.convert(str) }