1
0
mirror of https://github.com/tooot-app/app synced 2024-12-22 15:49:42 +01:00

Update Push.tsx

This commit is contained in:
xmflsct 2023-01-11 23:34:02 +01:00
parent c7602df08c
commit 50f95900b6

View File

@ -182,7 +182,7 @@ const TabMePush: React.FC = () => {
} else { } else {
// Fix a bug for some users of v4.8.0 // Fix a bug for some users of v4.8.0
let authKey = push.key let authKey = push.key
if (push.key.length <= 10) { if (push.key?.length <= 10) {
authKey = fromByteArray(Random.getRandomBytes(16)) authKey = fromByteArray(Random.getRandomBytes(16))
} }
// Turning on // Turning on
@ -228,7 +228,7 @@ const TabMePush: React.FC = () => {
body: { body: {
accountFull, accountFull,
serverKey: res.body.server_key, serverKey: res.body.server_key,
auth: push.decode === false ? null : push.key auth: push.decode === false ? null : authKey
} }
}) })