diff --git a/gateway/src/telegram/send.ts b/gateway/src/telegram/send.ts index 5d057e0aefa..bc48f3b00a9 100644 --- a/gateway/src/telegram/send.ts +++ b/gateway/src/telegram/send.ts @@ -61,8 +61,8 @@ export async function sendTelegramAttachments( } try { - // Prefer the assistant-less download path; fall back to the legacy - // assistant-scoped path when assistantId is available. + // Use the legacy assistant-scoped download path when assistantId is + // available; fall back to the assistant-less endpoint otherwise. const payload = assistantId ? await downloadAttachment(config, assistantId, meta.id) : await downloadAttachmentById(config, meta.id);