mirror of
https://github.com/zadam/trilium.git
synced 2025-06-06 18:08:33 +02:00
fix setting becca's utcDateModified after marking as deleted
This commit is contained in:
parent
a97a7cdcdd
commit
99cc4078c6
@ -103,9 +103,11 @@ class AbstractEntity {
|
|||||||
const entityId = this[this.constructor.primaryKeyName];
|
const entityId = this[this.constructor.primaryKeyName];
|
||||||
const entityName = this.constructor.entityName;
|
const entityName = this.constructor.entityName;
|
||||||
|
|
||||||
|
this.utcDateModified = dateUtils.utcNowDateTime();
|
||||||
|
|
||||||
sql.execute(`UPDATE ${entityName} SET isDeleted = 1, deleteId = ?, utcDateModified = ?
|
sql.execute(`UPDATE ${entityName} SET isDeleted = 1, deleteId = ?, utcDateModified = ?
|
||||||
WHERE ${this.constructor.primaryKeyName} = ?`,
|
WHERE ${this.constructor.primaryKeyName} = ?`,
|
||||||
[deleteId, dateUtils.utcNowDateTime(), entityId]);
|
[deleteId, this.utcDateModified, entityId]);
|
||||||
|
|
||||||
if (this.dateModified) {
|
if (this.dateModified) {
|
||||||
sql.execute(`UPDATE ${entityName} SET dateModified = ? WHERE ${this.constructor.primaryKeyName} = ?`,
|
sql.execute(`UPDATE ${entityName} SET dateModified = ? WHERE ${this.constructor.primaryKeyName} = ?`,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user