Yani aşağıdaki şekilde iletiyor, normal mesaj şeklinde (veya no-quote) iletmesini istiyorum.

Kod:
const TelegramBot = require('node-telegram-bot-api');
const sourceChannelId = CHANNEL_ID;
const targetChannelId = CHANNEL_ID;
const bot = new TelegramBot('BOT_TOKEN', { polling: true });
bot.on('channel_post', (msg) => {
if (msg.chat.id === sourceChannelId) {
bot.forwardMessage(targetChannelId, sourceChannelId, msg.message_id);
}
});
