reduce chromecast volume

This commit is contained in:
Roy Olav Purser 2021-05-20 18:49:19 +02:00
parent a62b49e398
commit 091ec59265
Signed by: roypur
GPG Key ID: E14D26A036F21656

View File

@ -58,7 +58,7 @@
});
player.on("chromecastConnected", () => {
if(player.volume() > 0.3) {
player.volume(0.3);
player.volume(0.2);
}
});
}