We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc4d4dc commit ba0e609Copy full SHA for ba0e609
OpenScript.js
@@ -1846,7 +1846,7 @@ var OpenScript = {
1846
return target.value[prop];
1847
}
1848
1849
- if(!target[prop] && typeof target.value === "object" && target.value[prop]) return target.value[prop];
+ if(!target[prop] && target.value && typeof target.value === "object" && target.value[prop]) return target.value[prop];
1850
1851
return Reflect.get(...arguments);
1852
0 commit comments