Update Streamer class

This commit is contained in:
Christer Warén 2021-12-12 01:50:25 +02:00
parent b4f2ece9bf
commit 3f3aab4c22

View File

@ -106,7 +106,8 @@ module.exports = class {
}
listen(station) {
let audioPlayer = this.play(station);
let audioPlayer = this.map.get(station.name);
if(!audioPlayer || this.mode == "manual" && audioPlayer.subscribers.length != 0) audioPlayer = this.play(station);
return audioPlayer;
}