We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aaded3b commit 1ae9039Copy full SHA for 1ae9039
2 files changed
OpenFlow/src/public/Controllers.ts
@@ -1158,10 +1158,13 @@ module openflow {
1158
async SendOne(queuename: string, message: any): Promise<void> {
1159
var result: any = await this.api.QueueMessage(queuename, message);
1160
try {
1161
- // result = JSON.parse(result);
+ result = JSON.parse(result);
1162
} catch (error) {
1163
}
1164
- this.instanceid = result._id;
+ console.log(result);
1165
+ if ((this.instanceid === undefined || this.instanceid === null) && (result !== null && result !== unescape)) {
1166
+ this.instanceid = result._id;
1167
+ }
1168
1169
async Save() {
1170
var userData: any[] = this.formRender.userData;
VERSION
@@ -1 +1 @@
1
-0.0.154
+0.0.155
0 commit comments