Closed joshuali925 closed 1 year ago
I'm still getting the same error in #328 because in #329 empty check is done using result == {}, but in lua {} == {} is false. Using next(result) == nil check (taken from https://stackoverflow.com/a/1252776) works.
result == {}
{} == {}
next(result) == nil
I'm still getting the same error in #328 because in #329 empty check is done using
result == {}
, but in lua{} == {}
is false. Usingnext(result) == nil
check (taken from https://stackoverflow.com/a/1252776) works.