fix(service-worker): Make API call to the right endpoint (#1664)
Closes #1663.
This commit is contained in:
parent
c071ac1174
commit
5f51bd5aad
|
@ -169,7 +169,7 @@ self.addEventListener('fetch', event => {
|
|||
self.addEventListener('push', event => {
|
||||
event.waitUntil((async () => {
|
||||
const data = event.data.json()
|
||||
const { origin } = new URL(data.icon)
|
||||
const { origin } = event.target
|
||||
|
||||
try {
|
||||
const notification = await get(`${origin}/api/v1/notifications/${data.notification_id}`, {
|
||||
|
|
Loading…
Reference in a new issue