From 386cb6d79ea89e6fc3d936e40e42f46e560b8e9a Mon Sep 17 00:00:00 2001 From: masterhc Date: Sat, 3 Feb 2024 18:45:00 +0000 Subject: [PATCH] Search Fix -> Data correctly grabed by its index --- commands/search/searchAnime.js | 2 +- commands/search/searchChar.js | 4 ++-- commands/search/searchManga.js | 2 +- server.js | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/commands/search/searchAnime.js b/commands/search/searchAnime.js index 4971ee4..13941fb 100644 --- a/commands/search/searchAnime.js +++ b/commands/search/searchAnime.js @@ -50,7 +50,7 @@ class anime extends Command{ { message.delete(); m.message.delete(); - sendMessage(data[m.customId[m.customId.length-1]-1].id); + sendMessage(data[m.customId[m.customId.length-1]].id); }); /** * @param {Number} id diff --git a/commands/search/searchChar.js b/commands/search/searchChar.js index 5ead9c3..28c2ee2 100644 --- a/commands/search/searchChar.js +++ b/commands/search/searchChar.js @@ -42,7 +42,7 @@ class char extends Command{ .setTimestamp() .addFields(fieldPayload); embeds.unshift(embed); - console.log(data.length, embeds.length, embeds) + // console.log(data.length, embeds.length, embeds) const filter = i => i.customId.slice(0,-1) === randomID; await message.channel.send({ephemeral: true, embeds, components: [row] }); @@ -51,7 +51,7 @@ class char extends Command{ { message.delete(); m.message.delete(); - sendMessage(data[m.customId[m.customId.length-1]-1].id); + sendMessage(data[m.customId[m.customId.length-1]].id); }); /** * @param {Number} id diff --git a/commands/search/searchManga.js b/commands/search/searchManga.js index 66b64eb..0f8b033 100644 --- a/commands/search/searchManga.js +++ b/commands/search/searchManga.js @@ -53,7 +53,7 @@ class manga extends Command{ { message.delete(); m.message.delete(); - sendMessage(data[m.customId[m.customId.length-1]-1].id); + sendMessage(data[m.customId[m.customId.length-1]].id); }); /** * @param {Number} id diff --git a/server.js b/server.js index ad0c170..21dcf60 100644 --- a/server.js +++ b/server.js @@ -15,7 +15,7 @@ app.use(express.json()); app.use(express.urlencoded({extended:true})); const mongoDB = process.env.mongoDB; - + const server = http.createServer(app); const io = new Server(server);