0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-06-01 03:59:03 +02:00

Use database writer in user API DeleteOldNotifications

This commit is contained in:
Neil Alexander 2022-09-09 12:59:28 +01:00
parent 64472d9aab
commit 34e1dc210b
No known key found for this signature in database
GPG key ID: A02A2019A2BB0944

View file

@ -735,7 +735,9 @@ func (d *Database) GetRoomNotificationCounts(ctx context.Context, localpart, roo
} }
func (d *Database) DeleteOldNotifications(ctx context.Context) error { func (d *Database) DeleteOldNotifications(ctx context.Context) error {
return d.Notifications.Clean(ctx, nil) return d.Writer.Do(d.DB, nil, func(txn *sql.Tx) error {
return d.Notifications.Clean(ctx, txn)
})
} }
func (d *Database) UpsertPusher( func (d *Database) UpsertPusher(