Output error if vapid key can't be reached

merge-requests/1/head
Alex Gleason 2020-04-27 13:39:59 -05:00
rodzic e3a750df28
commit 099ff10987
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 7211D1F99744FBB7
1 zmienionych plików z 5 dodań i 1 usunięć

Wyświetl plik

@ -13,7 +13,11 @@ const urlBase64ToUint8Array = (base64String) => {
return decodeBase64(base64);
};
const getApplicationServerKey = getState => getState().getIn(['auth', 'app', 'vapid_key']);
const getApplicationServerKey = getState => {
const key = getState().getIn(['auth', 'app', 'vapid_key']);
if (!key) console.error('Could not get vapid key. Push notifications will not work.');
return key;
};
const getRegistration = () => navigator.serviceWorker.ready;