aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/thelounge/webview-unsafe.js
blob: 3f1358ad3e6e567d7e272c4aca8afb2b1e105033 (plain) (blame)
1
2
3
4
5
6
7
// Monkey patch ServiceWorker.postMessage so that it will actually post a notification in Ferdi:

function newPostMessage(options) {
  window.ferdi.displayNotification(options.title, options);
}
  
ServiceWorker.prototype.postMessage = newPostMessage;