MadelineProtoDocs/old_docs/API_docs_v14/constructors/updateChannelTooLong.md

1.0 KiB

title description image
updateChannelTooLong There are new updates in the specified channel, the client must fetch them. https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: updateChannelTooLong

Back to constructors index

There are new updates in the specified channel, the client must fetch them.
If the difference is too long or if the channel isn't currently in the states, start fetching from the specified pts.

Attributes:

Name Type Required Description
channel_id int Yes The channel
pts int Optional The PTS.

Type: Update

Example:

$updateChannelTooLong = ['_' => 'updateChannelTooLong', 'channel_id' => int, 'pts' => int];

Or, if you're into Lua:

updateChannelTooLong={_='updateChannelTooLong', channel_id=int, pts=int}