Invite to group

This commit is contained in:
Natsumi
2022-12-09 21:47:40 +13:00
parent f39eef07c4
commit 3a062bf4b4
4 changed files with 253 additions and 74 deletions

View File

@@ -1750,6 +1750,12 @@ class Database {
);
return userId;
}
async fixBrokenGroupInvites() {
await sqliteService.executeNonQuery(
`DELETE FROM ${Database.userPrefix}_notifications WHERE type LIKE '%.%'`
);
}
}
var self = new Database();