Commit f99bc00ec0c9d051bec1c3d12de33edb5bbc50f2

Authored by Rohan Rangray
1 parent 5498e58201

Removed the '/' at the end of /app/study

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

service-worker.js View file @ f99bc00
... ... @@ -41,7 +41,7 @@
41 41 self.addEventListener('notificationclick', function(event) {
42 42 console.log('On notification click: ', event);
43 43  
44   - var url = '/app/study/';
  44 + var url = '/app/study';
45 45 event.waitUntil(clients.openWindow(url));
46 46 });