fix: stop interval if error occurs

dev
TorchedSammy 2021-11-28 09:29:17 -05:00
parent f6aaf85cca
commit 9261253b63
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD
1 changed files with 2 additions and 2 deletions

4
lua.go
View File

@ -201,8 +201,8 @@ func hshinterval(L *lua.LState) int {
NRet: 0, NRet: 0,
Protect: true, Protect: true,
}); err != nil { }); err != nil {
fmt.Fprintln(os.Stderr, fmt.Fprintln(os.Stderr, "Error in interval function:\n\n", err)
"Error in interval function:\n\n", err) stop <- lua.LTrue // stop the interval
} }
case <-stop: case <-stop:
ticker.Stop() ticker.Stop()