[Glitch] Fixed ESLint error

Port a2da02626e to glitch-soc

Signed-off-by: Thibaut Girka <thib@sitedethib.com>
This commit is contained in:
abcang
2020-11-24 01:35:14 +09:00
committed by Thibaut Girka
parent 3d970faeb1
commit b9fc807115
4 changed files with 6 additions and 3 deletions

View File

@ -3,6 +3,7 @@
const checkNotificationPromise = () => {
try {
// eslint-disable-next-line promise/catch-or-return
Notification.requestPermission().then();
} catch(e) {
return false;
@ -22,7 +23,7 @@ const handlePermission = (permission, callback) => {
export const requestNotificationPermission = (callback) => {
if (checkNotificationPromise()) {
Notification.requestPermission().then((permission) => handlePermission(permission, callback));
Notification.requestPermission().then((permission) => handlePermission(permission, callback)).catch(console.warn);
} else {
Notification.requestPermission((permission) => handlePermission(permission, callback));
}

View File

@ -16,7 +16,7 @@ let sharedConnection;
* @property {function(): void} onDisconnect
*/
/**
/**
* @typedef StreamEvent
* @property {string} event
* @property {object} payload