right error messages
All checks were successful
PR Check / lint-and-format (pull_request) Successful in 2m13s
All checks were successful
PR Check / lint-and-format (pull_request) Successful in 2m13s
This commit is contained in:
parent
23446eb399
commit
ffd2270e80
1 changed files with 8 additions and 2 deletions
|
@ -91,6 +91,7 @@ export default {
|
|||
|
||||
const player = useMainPlayer();
|
||||
const queue = useQueue(interaction.guildId!);
|
||||
|
||||
if (request) {
|
||||
if (
|
||||
interaction.options.getSubcommand() ===
|
||||
|
@ -108,9 +109,10 @@ export default {
|
|||
} else if (queue) {
|
||||
const track = queue.history.currentTrack;
|
||||
if (track) {
|
||||
request = track.cleanTitle + " " + queue.history.currentTrack?.author;
|
||||
try {
|
||||
data = await player.lyrics.search({
|
||||
q: track.cleanTitle + " " + queue.history.currentTrack?.author,
|
||||
q: request,
|
||||
});
|
||||
} catch {
|
||||
return await interaction.followUp(`❌ | ${loc.get("c_lyrics2")} \`${track.title}\``);
|
||||
|
@ -196,7 +198,11 @@ export default {
|
|||
return await interaction.followUp(loc.get("c_lyrics8"));
|
||||
}
|
||||
|
||||
if (data && data.length > 0 && data[0].plainLyrics !== null) {
|
||||
if (data) {
|
||||
if (data.length === 0 || (data.length > 0 && data[0].plainLyrics !== null)) {
|
||||
return await interaction.followUp(`❌ | ${loc.get("c_lyrics2")} \`${request}\``);
|
||||
}
|
||||
|
||||
const title = data[0];
|
||||
const limit_desc = 4096;
|
||||
const nb_embed = Math.ceil(title.plainLyrics.length / limit_desc);
|
||||
|
|
Loading…
Reference in a new issue