Update listStations function

This commit is contained in:
Christer Warén 2021-09-16 04:53:48 +03:00
parent 90c7c667e4
commit b34120e688

View File

@ -4,7 +4,7 @@ module.exports = function listStations(client, interaction){
let stations = new Array();
let options = new Array();
stations = client.stations.forEach(station => {
stations = client.stations.list.forEach(station => {
if(station.name == "GrooveFM") return;
station = {
label: station.name,