danog / MadelineProto

Async PHP client API for the telegram MTProto protocol
https://docs.madelineproto.xyz
GNU Affero General Public License v3.0
2.74k stars 617 forks source link

Sending a message to the chat topic does not work #1487

Closed marlenus closed 4 months ago

marlenus commented 4 months ago

I'm trying to send a message to the forum chat topic, but the message always gets into the general chat with topMsgId=1

$this->sendMessage(
    peer: 'channel',
    topMsgId: 914,
    message: '<b>Message</b>',
    parseMode: ParseMode::HTML,
    noWebpage: true
);
danog commented 4 months ago

topMsgId is the wrong way of replying to a topic, see https://core.telegram.org/api/forum for more info on how to do that.