Skip to content

Commit

Permalink
[fix] typo
Browse files Browse the repository at this point in the history
  • Loading branch information
chisa-dev committed Jan 7, 2025
1 parent f0518b0 commit f2cfc11
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,12 @@ bot.on('callback_query', async (query) => {
const { canSend, totalMessages } = await db.incrementMessageCount(chatId);
if (!canSend) {
return bot.sendMessage(chatId,
"🚨 Oops! You've reached your daily message limit (10 messages). 😔\n\nBut don't worry! You can continue using the bot by buying more credits! 💳✨\n\n👉 Click below to check out your subscription options and get more credits to keep chatting!\n\n🛒 /subscription\n\n💰 <strong>Daily Credits Left</strong>: 0");
"🚨 Oops! You've reached your daily message limit (10 messages). 😔\n\nBut don't worry! You can continue using the bot by buying more credits! 💳✨\n\n👉 Click below to check out your subscription options and get more credits to keep chatting!\n\n🛒 /subscription\n\n💰 <b>Daily Credits Left</b>: 0",
{
parse_mode: 'HTML'
}
);

}

if (query.data.startsWith('delete:')) {
Expand Down

0 comments on commit f2cfc11

Please sign in to comment.