Refactor conditional

downgrade-react-17^2
Chewbacca 2023-01-11 14:55:52 -05:00
rodzic 5f2854571a
commit cf9156b414
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -108,7 +108,7 @@ const updateNotificationsQueue = (notification: APIEntity, intlMessages: Record<
// Desktop notifications
try {
// eslint-disable-next-line compat/compat
const isNotificationsEnabled = typeof window.Notification !== 'undefined' && Notification.permission === 'granted';
const isNotificationsEnabled = window.Notification?.permission === 'granted';
if (showAlert && !filtered && isNotificationsEnabled) {
const title = new IntlMessageFormat(intlMessages[`notification.${notification.type}`], intlLocale).format({ name: notification.account.display_name.length > 0 ? notification.account.display_name : notification.account.username });

Wyświetl plik

@ -472,7 +472,7 @@ const UI: React.FC = ({ children }) => {
navigator.serviceWorker.addEventListener('message', handleServiceWorkerPostMessage);
}
if (typeof window.Notification !== 'undefined' && Notification.permission === 'default') {
if (window.Notification?.permission === 'default') {
window.setTimeout(() => Notification.requestPermission(), 120 * 1000);
}