Try to enable push notifications
This commit is contained in:
parent
a87f0f42db
commit
9544093ffd
@ -16,7 +16,7 @@ import { logger, LogTypes } from '../logger';
|
|||||||
import { CancellablePromise } from '../../helpers/cancellablePromise';
|
import { CancellablePromise } from '../../helpers/cancellablePromise';
|
||||||
import { CACHE_ASSETS_NAME, requestCache } from './cache';
|
import { CACHE_ASSETS_NAME, requestCache } from './cache';
|
||||||
import onStreamFetch from './stream';
|
import onStreamFetch from './stream';
|
||||||
// import { closeAllNotifications, onPing } from './push';
|
import { closeAllNotifications, onPing } from './push';
|
||||||
|
|
||||||
export const log = logger('SW', LogTypes.Error | LogTypes.Debug | LogTypes.Log | LogTypes.Warn);
|
export const log = logger('SW', LogTypes.Error | LogTypes.Debug | LogTypes.Log | LogTypes.Warn);
|
||||||
const ctx = self as any as ServiceWorkerGlobalScope;
|
const ctx = self as any as ServiceWorkerGlobalScope;
|
||||||
@ -62,10 +62,10 @@ const taskListeners: {
|
|||||||
[type in ServiceWorkerTask['type']]: (task: any, event: ExtendableMessageEvent) => void
|
[type in ServiceWorkerTask['type']]: (task: any, event: ExtendableMessageEvent) => void
|
||||||
} = {
|
} = {
|
||||||
notifications_clear: () => {
|
notifications_clear: () => {
|
||||||
// closeAllNotifications();
|
closeAllNotifications();
|
||||||
},
|
},
|
||||||
ping: (task: ServiceWorkerPingTask, event) => {
|
ping: (task: ServiceWorkerPingTask, event) => {
|
||||||
// onPing(task, event);
|
onPing(task, event);
|
||||||
},
|
},
|
||||||
requestFilePart: (task: RequestFilePartTaskResponse) => {
|
requestFilePart: (task: RequestFilePartTaskResponse) => {
|
||||||
const promise = deferredPromises[task.id];
|
const promise = deferredPromises[task.id];
|
||||||
|
Loading…
Reference in New Issue
Block a user