This commit is contained in:
Christer Warén 2021-09-16 05:16:41 +03:00
parent ccb386e3b3
commit 4bf74f15a2
5 changed files with 12 additions and 12 deletions

View File

@ -7,7 +7,7 @@ module.exports = {
execute(interaction, client) { execute(interaction, client) {
let message = {}; let message = {};
if(!client.stations.list) { if(!client.stations) {
message.errorToGetPlaylist = client.messages.errorToGetPlaylist.replace("%client.config.supportGuild%", client.config.supportGuild); message.errorToGetPlaylist = client.messages.errorToGetPlaylist.replace("%client.config.supportGuild%", client.config.supportGuild);
return interaction.reply({ return interaction.reply({
content: client.messageEmojis["error"] + message.errorToGetPlaylist, content: client.messageEmojis["error"] + message.errorToGetPlaylist,
@ -20,7 +20,7 @@ module.exports = {
if(radio && !client.config.maintenanceMode){ if(radio && !client.config.maintenanceMode){
client.funcs.listStations(client, interaction); client.funcs.listStations(client, interaction);
} else { } else {
let stations = `${client.stations.list.map(s => `**#** ${s.name}`).join('\n')}` let stations = `${client.stations.map(s => `**#** ${s.name}`).join('\n')}`
const hashs = stations.split('**#**').length; const hashs = stations.split('**#**').length;
for (let i = 0; i < hashs; i++) { for (let i = 0; i < hashs; i++) {
stations = stations.replace('**#**', `**${i + 1}.**`); stations = stations.replace('**#**', `**${i + 1}.**`);

View File

@ -6,10 +6,10 @@ module.exports = {
if (client.funcs.check(client, interaction, command)) { if (client.funcs.check(client, interaction, command)) {
const radio = client.radio.get(interaction.guild.id); const radio = client.radio.get(interaction.guild.id);
let index = client.stations.list.findIndex(station => station.name == radio.station.name) + 1; let index = client.stations.findIndex(station => station.name == radio.station.name) + 1;
if(index == client.stations.list.length) index = 0; if(index == client.stations.length) index = 0;
let station = client.stations.list[index]; let station = client.stations[index];
if(!station) return interaction.reply({ if(!station) return interaction.reply({
content: client.messageEmojis["error"] + client.messages.noSearchResults, content: client.messageEmojis["error"] + client.messages.noSearchResults,

View File

@ -71,13 +71,13 @@ module.exports = {
ephemeral: true ephemeral: true
}); });
} else if (!isNaN(number)) { } else if (!isNaN(number)) {
if (number > client.stations.list.length - 1) { if (number > client.stations.length - 1) {
return interaction.reply({ return interaction.reply({
content: client.messageEmojis["error"] + client.messages.wrongStationNumber, content: client.messageEmojis["error"] + client.messages.wrongStationNumber,
ephemeral: true ephemeral: true
}); });
} else { } else {
station = client.stations.list[number]; station = client.stations[number];
} }
} else { } else {
if (query.length < 3) return interaction.reply({ if (query.length < 3) return interaction.reply({

View File

@ -6,10 +6,10 @@ module.exports = {
if (client.funcs.check(client, interaction, command)) { if (client.funcs.check(client, interaction, command)) {
const radio = client.radio.get(interaction.guild.id); const radio = client.radio.get(interaction.guild.id);
let index = client.stations.list.findIndex(station => station.name == radio.station.name) - 1; let index = client.stations.findIndex(station => station.name == radio.station.name) - 1;
if(index == -1) index = client.stations.list.length - 1; if(index == -1) index = client.stations.length - 1;
let station = client.stations.list[index]; let station = client.stations[index];
if(!station) return interaction.reply({ if(!station) return interaction.reply({
content: client.messageEmojis["error"] + client.messages.noSearchResults, content: client.messageEmojis["error"] + client.messages.noSearchResults,

View File

@ -7,12 +7,12 @@ module.exports = {
category: 'info', category: 'info',
execute(interaction, client) { execute(interaction, client) {
let message = {}; let message = {};
let stations = client.stations.list; let stations = client.stations;
let currentGuild = client.datastore.getEntry(interaction.guild.id); let currentGuild = client.datastore.getEntry(interaction.guild.id);
let global = client.datastore.getEntry("global"); let global = client.datastore.getEntry("global");
let statistics = ""; let statistics = "";
if(!client.stations.list) { if(!client.stations) {
message.errorToGetPlaylist = client.messages.errorToGetPlaylist.replace("%client.config.supportGuild%", client.config.supportGuild); message.errorToGetPlaylist = client.messages.errorToGetPlaylist.replace("%client.config.supportGuild%", client.config.supportGuild);
return interaction.reply({ return interaction.reply({
content: client.messageEmojis["error"] + message.errorToGetPlaylist, content: client.messageEmojis["error"] + message.errorToGetPlaylist,