Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions crates/tasks/src/matrix.rs
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ impl RunnableJob for SyncDevicesJob {
let mut devices = HashSet::new();

// Cycle through all the compat sessions of the user, and grab the devices
let mut cursor = Pagination::first(100);
let mut cursor = Pagination::first(5000);
loop {
let page = repo
.compat_session()
Expand All @@ -216,7 +216,7 @@ impl RunnableJob for SyncDevicesJob {
}

// Cycle though all the oauth2 sessions of the user, and grab the devices
let mut cursor = Pagination::first(100);
let mut cursor = Pagination::first(5000);
loop {
let page = repo
.oauth2_session()
Expand Down
Loading