this repo has no description
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

lua: clear stack in on_message callback

Signed-off-by: Tim Culverhouse <tim@timculverhouse.com>

+1 -1
+1 -1
src/lua.zig
··· 145 145 _ = lua.pushString(msg); // [function,string,string,string] 146 146 lua.protectedCall(3, 0, 0) catch return error.LuaError; 147 147 }, 148 - else => {}, 148 + else => lua.pop(2), // [] 149 149 } 150 150 } 151 151