Patch conversion from lua table to go slice or map

Former-commit-id: d94b879215374438a096e4b80a49b362266149ac
This commit is contained in:
2024-03-12 17:18:29 +01:00
parent f4d71d4a66
commit 6758ee6a8a
2 changed files with 22 additions and 3 deletions

View File

@ -64,7 +64,7 @@ func pushMapStringInterfaceToLua(L *lua.LState, m map[string]interface{}) {
case string:
luaTable.RawSetString(key, lua.LString(v))
default:
log.Fatalf("Doesn't deal with map containing value %v", v)
log.Fatalf("Doesn't deal with map containing value %v of type %T", v, v)
}
}