-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(telegram): add pagination fetching of messages (#4394)
* feat(telegram): add pagination fetching of messages * docs
- Loading branch information
Showing
3 changed files
with
74 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# TelegramBridge | ||
|
||
By default, it fetches a single page with up to 20 messages. | ||
|
||
To increase this limit, tweak the `max_pages` config: | ||
|
||
```ini | ||
[TelegramBridge] | ||
|
||
; Fetch a maximum of 3 pages (requires 3 http requests) | ||
max_pages = 3 | ||
``` |