Disable chromecast in unsupported browsers

This commit is contained in:
Bill Thornton 2020-11-24 12:17:43 -05:00
parent 205f7c326d
commit a9c2473799

View File

@ -125,13 +125,13 @@ function loadPlugins() {
console.groupCollapsed('loading installed plugins'); console.groupCollapsed('loading installed plugins');
console.dir(pluginManager); console.dir(pluginManager);
return getPlugins().then(function (list) { return getPlugins().then(function (list) {
// these two plugins are dependent on features
if (!appHost.supports('remotecontrol')) { if (!appHost.supports('remotecontrol')) {
// Disable remote player plugins if not supported
list.splice(list.indexOf('sessionPlayer'), 1); list.splice(list.indexOf('sessionPlayer'), 1);
list.splice(list.indexOf('chromecastPlayer'), 1);
if (!browser.chrome && !browser.opera) { } else if (!browser.chrome && !browser.edgeChromium && !browser.opera) {
list.splice(list.indexOf('chromecastPlayer', 1)); // Disable chromecast player in unsupported browsers
} list.splice(list.indexOf('chromecastPlayer'), 1);
} }
// add any native plugins // add any native plugins