this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: Use file stream for local media files in postMedia method

+3 -2
+2 -1
.gitignore
··· 12 12 alert-state.json 13 13 14 14 # Dependencies 15 - node_modules/ 15 + node_modules/ 16 + stagehanderror.txt
+1 -1
bot/telegrambot/helpers/mediaHelper.js
··· 144 144 if (fs.existsSync(mediaData.imageUrl)) { 145 145 await this.bot.sendPhoto( 146 146 config.channelId, 147 - mediaData.imageUrl, 147 + fs.createReadStream(mediaData.imageUrl), // Use file stream for local files 148 148 { 149 149 caption: caption, 150 150 reply_markup: inlineKeyboard