We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e043fc commit 6e3ef4aCopy full SHA for 6e3ef4a
1 file changed
OpenFlow/src/DatabaseConnection.ts
@@ -848,7 +848,7 @@ export class DatabaseConnection {
848
async SaveDiff(collectionname: string, original: any, item: any) {
849
if (item._type == 'instance' && collectionname == 'workflows') return 0;
850
851
- if (item.skiphistory === true || item.skiphistory === "true") {
+ if (item._skiphistory === true || item._skiphistory === "true") {
852
if (item._version === undefined || item._version === null) {
853
item._version = 0;
854
}
0 commit comments