Skip to content

Commit 6e3ef4a

Browse files
committed
use _skiphistory
1 parent 3e043fc commit 6e3ef4a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

OpenFlow/src/DatabaseConnection.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -848,7 +848,7 @@ export class DatabaseConnection {
848848
async SaveDiff(collectionname: string, original: any, item: any) {
849849
if (item._type == 'instance' && collectionname == 'workflows') return 0;
850850
if (item._type == 'instance' && collectionname == 'workflows') return 0;
851-
if (item.skiphistory === true || item.skiphistory === "true") {
851+
if (item._skiphistory === true || item._skiphistory === "true") {
852852
if (item._version === undefined || item._version === null) {
853853
item._version = 0;
854854
}

0 commit comments

Comments
 (0)