changed from .no to .me

This commit is contained in:
Kasper Rynning-Tønnesen
2017-02-28 18:37:03 +01:00
parent 0756da0293
commit d67d85781b
10 changed files with 45 additions and 45 deletions

View File

@@ -118,12 +118,12 @@ var Playercontrols = {
{
if(!Player.player.isMuted())
{
if(chromecastAvailable) castSession.sendMessage("urn:x-cast:zoff.no", {type: "mute"});
if(chromecastAvailable) castSession.sendMessage("urn:x-cast:zoff.me", {type: "mute"});
Playercontrols.choose_button(0, true);
Player.player.mute();
}else
{
if(chromecastAvailable)castSession.sendMessage("urn:x-cast:zoff.no", {type: "unMute"});
if(chromecastAvailable)castSession.sendMessage("urn:x-cast:zoff.me", {type: "unMute"});
Player.player.unMute();
Playercontrols.choose_button(Player.player.getVolume(), false);
}