From 7952f9c32b2aa3a8baab2b561f8a002ddd720448 Mon Sep 17 00:00:00 2001 From: Lucas Gabriel Date: Thu, 3 Oct 2024 22:31:07 -0300 Subject: [PATCH] Put cat emoji after link --- commands/cat.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/cat.js b/commands/cat.js index 184117a..cb28625 100644 --- a/commands/cat.js +++ b/commands/cat.js @@ -14,7 +14,7 @@ module.exports = (bot) => { try { await ctx.replyWithAnimation(apiUrl, { - caption: apiUrl, + caption: `🐱 ${apiUrl}`, parse_mode: 'Markdown', reply_to_message_id: ctx.message.message_id }); @@ -30,7 +30,7 @@ module.exports = (bot) => { try { await ctx.replyWithPhoto(apiUrl, { - caption: apiUrl, + caption: `🐱 ${apiUrl}`, parse_mode: 'Markdown', reply_to_message_id: ctx.message.message_id });