Compare commits
2 commits
e283dd3438
...
62d5b5c770
Author | SHA1 | Date | |
---|---|---|---|
62d5b5c770 | |||
be2f7b695b |
2 changed files with 2 additions and 2 deletions
|
@ -141,7 +141,7 @@ pub async fn get_message_events_route(
|
|||
.lazy_load_confirm_delivery(sender_user, sender_device, &body.room_id, from)
|
||||
.await?;
|
||||
|
||||
let limit = u64::from(body.limit).min(100) as usize;
|
||||
let limit = u64::from(body.limit).min(2000) as usize;
|
||||
|
||||
let next_token;
|
||||
|
||||
|
|
|
@ -1187,7 +1187,7 @@ impl Service {
|
|||
federation::backfill::get_backfill::v1::Request {
|
||||
room_id: room_id.to_owned(),
|
||||
v: vec![first_pdu.1.event_id.as_ref().to_owned()],
|
||||
limit: uint!(100),
|
||||
limit: uint!(1000),
|
||||
},
|
||||
)
|
||||
.await;
|
||||
|
|
Loading…
Reference in a new issue