We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80e021b commit bff7a78Copy full SHA for bff7a78
1 file changed
src/lib/OGF/gom/lua/lua_interpreter.cpp
@@ -646,7 +646,11 @@ namespace OGF {
646
scope->ref();
647
Any o_as_any = scope->resolve(string_value);
648
scope->unref();
649
- if(!o_as_any.is_null()) {
+ Object* o = nullptr;
650
+ o_as_any.get_value(o);
651
+ if(o == nullptr) {
652
+ return String::quote(string_value);
653
+ } else {
654
return back_parse(o_as_any, mtype);
655
}
656
0 commit comments