avoid triggering a warning when using the Notifications API in an insecure context

pull/1/head
ansuz 2019-09-09 15:59:56 +02:00
parent c7cea7fae3
commit c9be2fae36
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ define(['/api/config'], function (ApiConfig) {
var isSupported = Module.isSupported = function () {
return typeof(window.Notification) === 'function';
return typeof(window.Notification) === 'function' && window.location.protocol === 'https:';
};
var hasPermission = Module.hasPermission = function () {