From 88aa8eb34acb8b7207e6038c652f4d81cce66c54 Mon Sep 17 00:00:00 2001 From: vchikalkin Date: Tue, 20 Jan 2026 20:16:29 +0300 Subject: [PATCH] fix: instagram reels download --- apps/bot/src/bot/features/download.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/bot/src/bot/features/download.ts b/apps/bot/src/bot/features/download.ts index 89e0408..1e037d4 100644 --- a/apps/bot/src/bot/features/download.ts +++ b/apps/bot/src/bot/features/download.ts @@ -75,7 +75,7 @@ async function getDownloadData( } if (isInstagram) { - const result = await getInstagramDownloadUrl(url); + const result = await getInstagramDownloadUrl(url.replace('/reel/', '/p/')); return { caption: result.caption, imagesUrls: result.images,