Skip to content

Commit

Permalink
stable
Browse files Browse the repository at this point in the history
  • Loading branch information
besoeasy authored Nov 6, 2024
1 parent 0d31f1d commit ffe88a6
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,10 @@ const handleDownload = async (ctx, url) => {
const downloadData = await downloadAria(userIdHash, url);
const downloadId = downloadData.result;

ctx.replyWithMarkdown(`
📥 **Download Started!**
🔹 **Download ID:** ${downloadId}
🔹 **Track progress with** /status_${downloadId} or view all downloads with /downloading
`);
ctx.replyWithMarkdown(
`📥 **Download Started!**\n\n🔹 **Download ID:** ${downloadId}\n🔹 **Track progress with** /status_${downloadId} or view all downloads with /downloading`,
{ disable_web_page_preview: true }
);
} catch (error) {
console.error(error);
ctx.reply("⚠️ Failed to start download. Please try again later.");
Expand Down

0 comments on commit ffe88a6

Please sign in to comment.