Compare commits

...

1 Commits

Author SHA1 Message Date
Kasper Rynning-Tønnesen
ce7ac96a5d Fix for casting-crashing in other browsers without casting 2019-11-15 16:58:58 +01:00

View File

@@ -350,7 +350,12 @@ temp_pass = "";
initializeCastApi = function() {
try {
if (cast == undefined) return;
if (
cast == undefined ||
chrome.cast == undefined ||
chrome.cast.AutoJoinPolicy == undefined
)
return;
} catch (event) {
return;
}