mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 08:28:19 +01:00
fix(api): 🐛 Use aesgcm, not aes128gcm during push notifications
Mastodon's server hates aes128gcm
This commit is contained in:
parent
bedc25bacf
commit
1c543723fb
|
|
@ -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",
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue