2
3
Mirror von https://github.com/sammy-ette/Hilbish synchronisiert 2025-08-10 02:52:03 +00:00

fix: handle panic in lua input if it is incorrect

Dieser Commit ist enthalten in:
TorchedSammy 2022-03-28 17:43:21 -04:00
Ursprung d34aa09e8e
Commit 2086a1ec78
Signiert von: sammyette
GPG-Schlüssel-ID: 904FC49417B44DCD

Datei anzeigen

@ -114,7 +114,9 @@ func handleLua(cmdString string) (uint8, error) {
}
// And if there's no syntax errors and -n isnt provided, run
if !noexecute {
_, err = rt.Call1(l.MainThread(), rt.FunctionValue(chunk))
if chunk != nil {
_, err = rt.Call1(l.MainThread(), rt.FunctionValue(chunk))
}
}
if err == nil {
return 0, nil