fix(notification): Properly disable notification providers (#8607)

This commit is contained in:
Oli Juhl
2024-08-15 14:59:14 +02:00
committed by GitHub
parent b7bb793f03
commit bda3f68057
2 changed files with 9 additions and 2 deletions
@@ -104,7 +104,7 @@ async function syncDatabaseProviders({
providerService.update(
providersToDisable.map((p) => ({
id: p.id,
update: { is_enabled: false },
is_enabled: false,
}))
)
)