From 5736ed1fce6cd6b254e73a0803c56d7ae2bbbb59 Mon Sep 17 00:00:00 2001 From: fallenoak Date: Wed, 1 Oct 2025 21:03:49 -0500 Subject: [PATCH] feat(ui): stub issecure --- src/ui/LuaExtraFuncs.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/ui/LuaExtraFuncs.cpp b/src/ui/LuaExtraFuncs.cpp index 71664a3..855c17b 100644 --- a/src/ui/LuaExtraFuncs.cpp +++ b/src/ui/LuaExtraFuncs.cpp @@ -72,7 +72,11 @@ int32_t strlenutf8(lua_State* L) { } int32_t issecure(lua_State* L) { - WHOA_UNIMPLEMENTED(0); + // TODO taint check + + lua_pushnumber(L, 1.0); + + return 1; } int32_t issecurevariable(lua_State* L) {