feat(telegram): add pagination fetching of messages (#4394)

* feat(telegram): add pagination fetching of messages

* docs
This commit is contained in:
Dag 2025-01-04 19:00:26 +01:00 committed by GitHub
parent f9e9c8101e
commit 48cb7d71ed
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 71 additions and 28 deletions

View file

@ -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
```