Merge pull request #1869 from Bilb/logs-pn-server

Add logs of PN server notify fails
pull/1873/head
Audric Ackermann 4 years ago committed by GitHub
commit ca96795683
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -94,7 +94,10 @@ export class MessageSentHandler {
window?.log?.warn('Should send PN notify but no wrapped envelope set.');
} else {
// we do not really care about the retsult.
await PnServer.notifyPnServer(wrappedEnvelope, sentMessage.device);
const pnNotifyRet = await PnServer.notifyPnServer(wrappedEnvelope, sentMessage.device);
if (!pnNotifyRet) {
window?.log?.warn('Push notification server request returned false');
}
}
}

Loading…
Cancel
Save