song name

This commit is contained in:
Andrey Kondratev
2025-08-29 22:12:42 +05:00
parent ae658e15e4
commit 07ed434375
5 changed files with 28 additions and 4 deletions

View File

@@ -263,7 +263,7 @@ export class QuixoticBot {
await this.bot.sendAudio(chatId, audioUrl, {
title: title,
performer: performer || 'SoundCloud',
caption: `🎵 ${title}`,
caption: undefined,
thumbnail: thumbnail,
parse_mode: undefined
});
@@ -274,7 +274,7 @@ export class QuixoticBot {
// Fallback: try as document
try {
await this.bot.sendDocument(chatId, audioUrl, {
caption: `🎵 ${title}`,
caption: undefined,
parse_mode: undefined
});
console.log(`✅ Document sent: ${title}`);