From 6e67294d0f62db7e16bf260cfe2cbc8d5c0fe787 Mon Sep 17 00:00:00 2001 From: JonnyBro Date: Sun, 4 Sep 2022 19:04:43 +0500 Subject: [PATCH 1/7] =?UTF-8?q?=D0=A4=D0=B8=D0=BA=D1=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- commands/General/userinfo.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/General/userinfo.js b/commands/General/userinfo.js index 112fbe1e..cb0e7225 100644 --- a/commands/General/userinfo.js +++ b/commands/General/userinfo.js @@ -91,7 +91,7 @@ class Userinfo extends BaseCommand { text: client.config.embed.footer }); - if (member.presence.activities[0].name === "Custom Status") { + if (member.presence.activities[0]?.name === "Custom Status") { embed.addFields([ { name: client.customEmojis.games + " " + interaction.translate("common:ACTIVITY"), @@ -103,7 +103,7 @@ class Userinfo extends BaseCommand { embed.addFields([ { name: client.customEmojis.games + " " + interaction.translate("common:ACTIVITY"), - value: member.presence.activities[0] ? `${member.presence.activities[0].name}\n${member.presence.activities[0].details}\n${member.presence.activities[0].state}` : interaction.translate("general/userinfo:NO_GAME"), + value: member.presence.activities[0] ? `${member.presence.activities[0].name}\n${member.presence.activities[0].details}\n${member.presence.activities[0].state}` : interaction.translate("general/userinfo:NO_ACTIVITY"), inline: true } ]); From 140320205cf25ab16769b51f457f6c3d1e4e9c93 Mon Sep 17 00:00:00 2001 From: JonnyBro Date: Sun, 4 Sep 2022 21:14:00 +0500 Subject: [PATCH 2/7] =?UTF-8?q?=D0=97=D0=B0=D0=B1=D1=8B=D0=BB=20=D1=83?= =?UTF-8?q?=D0=B1=D1=80=D0=B0=D1=82=D1=8C=20=D0=BB=D0=BE=D0=B3=20=D0=B4?= =?UTF-8?q?=D0=BB=D1=8F=20=D0=B4=D0=B5=D0=B1=D0=B0=D0=B3=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- commands/Music/play.js | 1 - 1 file changed, 1 deletion(-) diff --git a/commands/Music/play.js b/commands/Music/play.js index 12763542..408adcc7 100644 --- a/commands/Music/play.js +++ b/commands/Music/play.js @@ -93,7 +93,6 @@ class Play extends BaseCommand { * @param {import("discord-player").Queue} queue */ async onBeforeCreateStream(track, source) { - console.log(track, source); if (source === "youtube" || source === "soundcloud") return (await playdl.stream(track.url, { discordPlayerCompatibility: true })).stream; } From 9653f8daefd0f01a61d7428833d8d4ac808c0832 Mon Sep 17 00:00:00 2001 From: JonnyBro Date: Mon, 5 Sep 2022 13:18:41 +0500 Subject: [PATCH 3/7] =?UTF-8?q?=D0=9F=D1=80=D0=BE=D0=B2=D0=B5=D1=80=D0=BA?= =?UTF-8?q?=D0=B0=20=D0=B2=D0=B5=D0=B1=D1=85=D1=83=D0=BA=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index d41b676d..702e9e9a 100644 --- a/.gitignore +++ b/.gitignore @@ -21,4 +21,4 @@ # Node modules node_modules -yarn.lock \ No newline at end of file +yarn.lock From 7204e873e8d80b845260a10083cbf3f4c2de9aed Mon Sep 17 00:00:00 2001 From: JonnyBro Date: Mon, 5 Sep 2022 13:21:38 +0500 Subject: [PATCH 4/7] =?UTF-8?q?=D0=A2=D0=B5=D0=BF=D0=B5=D1=80=D1=8C=20?= =?UTF-8?q?=D0=B2=D0=B5=D0=B1=D1=85=D1=83=D0=BA=20=D1=80=D0=B0=D0=B1=D0=BE?= =?UTF-8?q?=D1=82=D0=B0=D0=B5=D1=82=20=3D)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 702e9e9a..d41b676d 100644 --- a/.gitignore +++ b/.gitignore @@ -21,4 +21,4 @@ # Node modules node_modules -yarn.lock +yarn.lock \ No newline at end of file From 45a5f6b2e87dc1f1cc2cf421492407a679f9d4eb Mon Sep 17 00:00:00 2001 From: JonnyBro Date: Fri, 9 Sep 2022 18:27:03 +0500 Subject: [PATCH 5/7] =?UTF-8?q?=D0=BA=D1=83=D0=BA=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- commands/Music/play.js | 5 ++++- getcookie.js | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 getcookie.js diff --git a/commands/Music/play.js b/commands/Music/play.js index 408adcc7..526f1994 100644 --- a/commands/Music/play.js +++ b/commands/Music/play.js @@ -217,9 +217,12 @@ class Play extends BaseCommand { }); }); - return interaction.editReply({ + interaction.editReply({ components: [row1, row2, row3] }); + + collector.end(); + return; } } }); diff --git a/getcookie.js b/getcookie.js new file mode 100644 index 00000000..026e6811 --- /dev/null +++ b/getcookie.js @@ -0,0 +1 @@ +require("play-dl").authorization(); \ No newline at end of file From 78d41c6343213cd8ac7fb5976d27ee3e2df412f9 Mon Sep 17 00:00:00 2001 From: JonnyBro Date: Fri, 9 Sep 2022 18:33:01 +0500 Subject: [PATCH 6/7] =?UTF-8?q?=D0=95=D1=81=D0=BB=D0=B8=20=D0=BE=D1=88?= =?UTF-8?q?=D0=B8=D0=B1=D0=BA=D0=B0=20=D0=BF=D1=80=D0=B8=20=D0=BF=D0=BE?= =?UTF-8?q?=D0=B8=D1=81=D0=BA=D0=B5=20=D1=82=D1=80=D0=B5=D0=BA=D0=B0=20?= =?UTF-8?q?=D0=B2=D0=BE=D0=B7=D0=B2=D1=80=D0=B0=D1=89=D0=B0=D0=B5=D0=BC=20?= =?UTF-8?q?=D0=B5=D1=91=20=D0=B0=20=D0=BD=D0=B5=20=D0=BC=D0=BE=D0=BB=D1=87?= =?UTF-8?q?=D0=B8=D0=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- commands/Music/play.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/commands/Music/play.js b/commands/Music/play.js index 526f1994..24933995 100644 --- a/commands/Music/play.js +++ b/commands/Music/play.js @@ -69,6 +69,9 @@ class Play extends BaseCommand { searchResult = await client.player.search(query, { requestedBy: interaction.user }); + + if (!searchResult.tracks[0] || !searchResult) + return interaction.editReply({ content: interaction.translate("music/play:NO_RESULT", { query }) }); } } catch (error) { return interaction.editReply({ From 79a86478924cef4fad50841f5f334d965eef037b Mon Sep 17 00:00:00 2001 From: JonnyBro Date: Sat, 10 Sep 2022 18:27:15 +0500 Subject: [PATCH 7/7] =?UTF-8?q?=D1=84=D0=B8=D0=BA=D1=81=D0=B8=D0=BA=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- commands/Music/play.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/Music/play.js b/commands/Music/play.js index 24933995..6d5c31f9 100644 --- a/commands/Music/play.js +++ b/commands/Music/play.js @@ -52,7 +52,7 @@ class Play extends BaseCommand { if (search) { const found = search.map(track => new Track(client.player, { title: track.title, - duration: Util.buildTimeCode(Util.parseMS(track.durationInSec * 1000)), + 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, @@ -71,7 +71,7 @@ class Play extends BaseCommand { }); if (!searchResult.tracks[0] || !searchResult) - return interaction.editReply({ content: interaction.translate("music/play:NO_RESULT", { query }) }); + return interaction.editReply({ content: interaction.translate("music/play:NO_RESULT", { query, error: "Unknown Error" }) }); } } catch (error) { return interaction.editReply({