fix: push hilbish.which return value properly

windows-fixes
TorchedSammy 2022-03-01 19:29:30 -04:00
parent 44e2a458f5
commit 062f40e9e5
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD
1 changed files with 1 additions and 1 deletions

2
api.go
View File

@ -343,6 +343,6 @@ func hlwhich(L *lua.LState) int {
return 1
}
l.Push(path)
l.Push(lua.LString(path))
return 1
}