From 021650e6ab278b2205bc25c012608667e3fae71e Mon Sep 17 00:00:00 2001 From: Dmitry Lyzo Date: Mon, 1 Jun 2020 19:17:23 +0300 Subject: [PATCH] Fix userSettings.chromecastVersion call --- src/components/chromecast/chromecastplayer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/chromecast/chromecastplayer.js b/src/components/chromecast/chromecastplayer.js index 5a9945539a..8edca9010b 100644 --- a/src/components/chromecast/chromecastplayer.js +++ b/src/components/chromecast/chromecastplayer.js @@ -58,7 +58,7 @@ define(['appSettings', 'userSettings', 'playbackManager', 'connectionManager', ' var applicationNightly = '6F511C87'; var applicationID = applicationStable; - if (userSettings.chromecastVersion === 'nightly') { + if (userSettings.chromecastVersion() === 'nightly') { applicationID = applicationNightly; }