Bugfix: Events marked as "removed" And deleteDate is set so the Notification does not get sent

This commit is contained in:
2025-11-06 17:36:54 +00:00
parent 5cdfd0f2e3
commit c703911f85
6 changed files with 23 additions and 12 deletions

View File

@@ -0,0 +1,7 @@
import db from "../src/sql";
db.run(
`UPDATE events
SET notification = 'done'
WHERE deleteDate IS NOT NULL;`
);