this repo has no description
3
fork

Configure Feed

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

app: return proper LuaError

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

+2 -2
+1 -1
src/App.zig
··· 257 257 .luajit, .lua51 => self.lua.loadFile(path) catch return error.LuaError, 258 258 else => self.lua.loadFile(path, .binary_text) catch return error.LuaError, 259 259 } 260 - self.lua.protectedCall(0, ziglua.mult_return, 0) catch return error.luaError; 260 + self.lua.protectedCall(0, ziglua.mult_return, 0) catch return error.LuaError; 261 261 } 262 262 263 263 defer self.input.deinit();
+1 -1
src/main.zig
··· 34 34 log.err("{s}", .{duped}); 35 35 return err; 36 36 }, 37 - else => {}, 37 + else => return err, 38 38 } 39 39 }; 40 40 }