fix(api): 🐛 Use aesgcm, not aes128gcm during push notifications

Mastodon's server hates aes128gcm
This commit is contained in:
Jesse Wierzbinski 2025-01-02 04:36:28 +01:00
parent bedc25bacf
commit 1c543723fb
No known key found for this signature in database

View file

@ -117,6 +117,7 @@ export const getPushWorker = (): Worker<PushJobData, void, PushJobType> =>
privateKey: config.notifications.push.vapid.private, privateKey: config.notifications.push.vapid.private,
publicKey: config.notifications.push.vapid.public, publicKey: config.notifications.push.vapid.public,
}, },
contentEncoding: "aesgcm",
}, },
); );