Skip to content

Commit 2bfada0

Browse files
committed
fix if
1 parent 1404967 commit 2bfada0

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

OpenFlow/src/DatabaseConnection.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1102,7 +1102,7 @@ export class DatabaseConnection {
11021102
for (let i = 0; i < keys.length; i++) {
11031103
let key = keys[i];
11041104
if (key.startsWith("_")) {
1105-
if (!NoderedUtil.IsNullUndefinded(uq.item[key])) uq.item[key] = exists[0][key];
1105+
if (NoderedUtil.IsNullUndefinded(uq.item[key])) uq.item[key] = exists[0][key];
11061106
}
11071107
}
11081108
const uqres = await this.UpdateOne(uq);

OpenFlowNodeRED/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openiap/nodered",
3-
"version": "1.1.136",
3+
"version": "1.1.137",
44
"description": "Simple wrapper around NodeRed, RabbitMQ and MongoDB to support a more scaleable NodeRed implementation.\r Also the \"backend\" for [OpenRPA](https://github.com/skadefro/OpenRPA)",
55
"main": "index.js",
66
"scripts": {

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.136
1+
1.1.137

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openiap/openflow",
3-
"version": "1.1.136",
3+
"version": "1.1.137",
44
"description": "Simple wrapper around NodeRed, RabbitMQ and MongoDB to support a more scaleable NodeRed implementation.\r Also the \"backend\" for [OpenRPA](https://github.com/skadefro/OpenRPA)",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)