Update Streamer class

This commit is contained in:
Christer Warén 2021-09-12 17:09:32 +03:00
parent 3029a8a653
commit 892c5f9902

View File

@ -6,11 +6,22 @@ const {
module.exports = class {
constructor() {
this.map = new Map();
this.mode = "auto";
this.stations = null;
this.logger = require("../funcs/logger.js");
}
init(client){
if(!client.config.streamerMode) return;
switch(client.config.streamerMode){
case "manual":
this.mode = "manual";
default:
this.mode = "auto";
}
if(this.mode == "auto"){
if(!client.stations) return;
client.stations.forEach(station => {
@ -22,6 +33,7 @@ module.exports = class {
this.play(station);
});
}
}
refresh(client){
this.init(client);