From 4fcd24f02577e2bc6782a8951d5c5a7f2f8fb852 Mon Sep 17 00:00:00 2001 From: Lucas Gabriel Date: Thu, 24 Oct 2024 00:55:51 -0300 Subject: [PATCH] Fixed wrong API call on /mlpep --- commands/ponyapi.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/ponyapi.js b/commands/ponyapi.js index 020d4eb..8afb4a5 100644 --- a/commands/ponyapi.js +++ b/commands/ponyapi.js @@ -97,7 +97,7 @@ module.exports = (bot) => { return; }; - const apiUrl = `http://ponyapi.net/v1/comics-story/${userInput}`; + const apiUrl = `http://ponyapi.net/v1/episode/by-overall/${userInput}`; try { const response = await axios(apiUrl);