tdlib / td

Cross-platform library for building Telegram clients
https://core.telegram.org/tdlib
Boost Software License 1.0
7.11k stars 1.44k forks source link

getting all pinned messages from a chat #2486

Closed teleothleo closed 1 year ago

teleothleo commented 1 year ago

Is there a simpler way of getting all pinned messages from a chat without calling getChatHistory and going through each message and checking whether "isPinned" is set to true? Thanks in advance

levlam commented 1 year ago

For this and similar queries searchChatMessages with appropriate filter is supposed to be used.

teleothleo commented 1 year ago

For this and similar queries searchChatMessages with appropriate filter is supposed to be used.

Great, thank you!