# HG changeset patch # User souliane # Date 1452626670 -3600 # Node ID 620306b3d5be1ac975eead0b1f84dd8de184ea59 # Parent d827b7c0cf9742ce2a397c705a0292208df5e566 browser (notification): remove the notification icon (it doesn't work with HTTPS) diff -r d827b7c0cf97 -r 620306b3d5be src/browser/sat_browser/notification.py --- a/src/browser/sat_browser/notification.py Tue Jan 12 19:17:27 2016 +0100 +++ b/src/browser/sat_browser/notification.py Tue Jan 12 20:24:30 2016 +0100 @@ -106,8 +106,9 @@ if not self.enabled: return notification = None + # FIXME: icon has been removed because the notification can't display a HTTPS file JS(""" - notification = new Notification(title, {body: body, icon: icon}); + notification = new Notification(title, {body: body}); // Probably won’t work, but it doesn’t hurt to try. notification.addEventListener('click', function() { window.focus();