Commit patches provided to me by someone who Seemed Trustworthy At The Time

(should fix false negatives in shared-worker detection)
This commit is contained in:
Caleb James DeLisle 2018-07-12 16:59:36 +02:00
parent cb8888ea1a
commit a440359bc7

View File

@ -884,7 +884,7 @@ define([
if (typeof(Worker) === "undefined") {
Feedback.send('NO_WEBWORKER');
}
if (typeof(ServiceWorker) === "undefined") {
if (!('serviceWorker' in navigator)) {
Feedback.send('NO_SERVICEWORKER');
}
if (!common.hasCSSVariables()) {