Temp handle TypeError in missing playlist info

This commit is contained in:
Christer Warén 2023-11-21 07:03:05 +02:00
parent 2d3c7e1184
commit e690958cef
2 changed files with 43 additions and 33 deletions

View File

@ -21,16 +21,19 @@ export default {
.then((response: Response) => response.json()) .then((response: Response) => response.json())
.catch(error => { .catch(error => {
}); });
try {
switch(radio.station?.playlist.type){
case "supla":
radio.station.track = "__" + playlist.items[0]?.artist + "__" + "\n" + playlist.items[0]?.song;
break;
case "yle":
radio.station.track = "-";
break;
default:
radio.station.track = "-";
}
} catch(TypeError) {
switch(radio.station?.playlist.type){
case "supla":
radio.station.track = "__" + playlist.items[0].artist + "__" + "\n" + playlist.items[0].song;
break;
case "yle":
radio.station.track = "-";
break;
default:
radio.station.track = "-";
} }
} }
@ -42,7 +45,7 @@ export default {
"%radio.station.name%": radio.station.name, "%radio.station.name%": radio.station.name,
"%radio.station.owner%\n": radio.station.name != radio.station.owner ? radio.station.owner + "\n" : "", "%radio.station.owner%\n": radio.station.name != radio.station.owner ? radio.station.owner + "\n" : "",
"%client.funcs.msToTime(completed)%": client.funcs.msToTime(completed), "%client.funcs.msToTime(completed)%": client.funcs.msToTime(completed),
"\n\n%radio.station.track%": radio.station.track != "-" ? "\n\n" + radio.station.track : "" "\n\n%radio.station.track%": radio.station.track != undefined ? "\n\n" + radio.station.track : ""
})) }))
.setImage('https://waren.io/berriabot-temp-sa7a36a9xm6837br/images/empty-3.png') .setImage('https://waren.io/berriabot-temp-sa7a36a9xm6837br/images/empty-3.png')
.setFooter({ .setFooter({

View File

@ -16,15 +16,19 @@ export default async function play(client: RadioClient, interaction: ChatInputCo
.catch(error => { .catch(error => {
}); });
switch(radio.station?.playlist.type){ try {
case "supla": switch(radio.station?.playlist.type){
radio.station.track = "__" + playlist.items[0].artist + "__" + "\n" + playlist.items[0].song; case "supla":
break; radio.station.track = "__" + playlist.items[0]?.artist + "__" + "\n" + playlist.items[0]?.song;
case "yle": break;
radio.station.track = "-"; case "yle":
break; radio.station.track = "-";
default: break;
radio.station.track = "-"; default:
radio.station.track = "-";
}
} catch(TypeError) {
} }
} }
@ -42,7 +46,7 @@ export default async function play(client: RadioClient, interaction: ChatInputCo
{ {
name: client.messages.playTitle2, name: client.messages.playTitle2,
value: client.messages.replace(client.messages.playDescription2, { value: client.messages.replace(client.messages.playDescription2, {
"%radio.station.track%": radio.station.track "%radio.station.track%": radio.station.track != undefined ? "\n\n" + radio.station.track : "-"
}) })
}) })
.setImage('https://waren.io/berriabot-temp-sa7a36a9xm6837br/images/empty-3.png') .setImage('https://waren.io/berriabot-temp-sa7a36a9xm6837br/images/empty-3.png')
@ -102,19 +106,22 @@ export default async function play(client: RadioClient, interaction: ChatInputCo
.then((response: Response) => response.json()) .then((response: Response) => response.json())
.catch(error => { .catch(error => {
}); });
try {
switch(radio.station?.playlist.type){
case "supla":
if(radio.station.track != playlist.items[0].artist + "\n" + playlist.items[0].song){
changed = true;
radio.station.track = "__" + playlist.items[0].artist + "__" + "\n" + playlist.items[0].song;
}
break;
case "yle":
radio.station.track = "-";
break;
default:
radio.station.track = "-";
}
} catch(TypeError) {
switch(radio.station?.playlist.type){
case "supla":
if(radio.station.track != playlist.items[0].artist + "\n" + playlist.items[0].song){
changed = true;
radio.station.track = "__" + playlist.items[0].artist + "__" + "\n" + playlist.items[0].song;
}
break;
case "yle":
radio.station.track = "-";
break;
default:
radio.station.track = "-";
} }
} }
@ -133,7 +140,7 @@ export default async function play(client: RadioClient, interaction: ChatInputCo
{ {
name: client.messages.playTitle2, name: client.messages.playTitle2,
value: client.messages.replace(client.messages.playDescription2, { value: client.messages.replace(client.messages.playDescription2, {
"%radio.station.track%": radio.station.track "%radio.station.track%": radio.station.track != undefined ? "\n\n" + radio.station.track : "-"
}) })
}) })
.setImage('https://waren.io/berriabot-temp-sa7a36a9xm6837br/images/empty-3.png') .setImage('https://waren.io/berriabot-temp-sa7a36a9xm6837br/images/empty-3.png')