We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2338ce9 commit 4fabe39Copy full SHA for 4fabe39
src/control/LiveInstrumentRemote.ts
@@ -211,7 +211,7 @@ export default class LiveInstrumentRemote {
211
212
let promises = [];
213
for (let variable of result) {
214
- if (!variable.value.objectId) continue;
+ if (!variable.value || !variable.value.objectId) continue;
215
promises.push(this.getVariable(variable.value.objectId, newRemainingDepth)
216
.then(res => variable.value.value = res));
217
}
0 commit comments