ServiceWorker: Use clearer variable names

This commit is contained in:
lain 2020-06-19 15:24:06 +02:00
parent 14540e2a07
commit aa725010c5

View file

@ -40,10 +40,10 @@ const maybeShowNotification = async (event) => {
const url = `${self.registration.scope}api/v1/notifications/${data.notification_id}` const url = `${self.registration.scope}api/v1/notifications/${data.notification_id}`
const notification = await fetch(url, { headers: { Authorization: 'Bearer ' + data.access_token } }) const notification = await fetch(url, { headers: { Authorization: 'Bearer ' + data.access_token } })
let nj = await notification.json() const notificationJson = await notification.json()
nj = parseNotification(nj) const parsedNotification = parseNotification(notificationJson)
const res = prepareNotificationObject(nj, i18n) const res = prepareNotificationObject(parsedNotification, i18n)
self.registration.showNotification(res.title, res) self.registration.showNotification(res.title, res)
} }