mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 05:04:58 +05:00
Я не умею гитхабом пользоваться
This commit is contained in:
parent
6097de097d
commit
b248684fc3
1 changed files with 7 additions and 28 deletions
|
@ -44,34 +44,13 @@ class Play extends BaseCommand {
|
|||
if (!perms.has(PermissionsBitField.Flags.Connect) || !perms.has(PermissionsBitField.Flags.Speak)) return interaction.editReply({ content: interaction.translate("music/play:VOICE_CHANNEL_CONNECT") });
|
||||
|
||||
try {
|
||||
var searchResult;
|
||||
if (!query.includes("http")) {
|
||||
const search = await playdl.search(query, { limit: 10 });
|
||||
|
||||
if (search) {
|
||||
const found = search.map(track => new Track(client.player, {
|
||||
title: track.title,
|
||||
duration: Util.buildTimeCode(Util.parseMS(track.durationInSec * 1000)),
|
||||
thumbnail: track.thumbnails[0].url || "https://cdn.discordapp.com/attachments/708642702602010684/1012418217660121089/noimage.png",
|
||||
views: track.views,
|
||||
author: track.channel.name,
|
||||
description: "search",
|
||||
url: track.url,
|
||||
var searchResult = await client.player.search(query, {
|
||||
requestedBy: interaction.user,
|
||||
playlist: null,
|
||||
source: "youtube"
|
||||
}));
|
||||
|
||||
searchResult = { playlist: null, tracks: found, searched: true };
|
||||
}
|
||||
} else {
|
||||
searchResult = await client.player.search(query, {
|
||||
requestedBy: interaction.user
|
||||
searchEngine: QueryType.AUTO
|
||||
});
|
||||
|
||||
if (!searchResult.tracks[0] || !searchResult)
|
||||
return interaction.editReply({ content: interaction.translate("music/play:NO_RESULT", { query, error: "Unknown Error" }) });
|
||||
}
|
||||
} catch (error) {
|
||||
console.log(error);
|
||||
return interaction.editReply({
|
||||
|
@ -87,7 +66,7 @@ class Play extends BaseCommand {
|
|||
autoSelfDeaf: true,
|
||||
leaveOnEnd: true,
|
||||
leaveOnStop: true,
|
||||
bufferingTimeout: 1000,
|
||||
bufferingTimeout: 1000
|
||||
});
|
||||
|
||||
if (searchResult.searched) {
|
||||
|
|
Loading…
Reference in a new issue