- From: Matteo Gioioso <notifications@github.com>
- Date: Wed, 13 Feb 2019 23:03:03 -0800
- To: w3c/ServiceWorker <ServiceWorker@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Thursday, 14 February 2019 07:03:34 UTC
```
self.addEventListener(
'activate',
function (event) {
event.waitUntil(activateHandler())
}
);
```
The following function does not get called, I tried with normal async but nothing is not working
```
async function activateHandler(){
//Async code here
}
```
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/ServiceWorker/issues/1388
Received on Thursday, 14 February 2019 07:03:34 UTC