Respect query arguments in Email/queryChanges (#2687)

This commit is contained in:
Cameron Little
2026-01-19 14:34:31 -07:00
committed by GitHub
parent a05a047bd3
commit 3119492852
2 changed files with 49 additions and 2 deletions

View File

@@ -130,7 +130,7 @@ impl<T: JmapObject> From<QueryChangesRequest<T>> for QueryRequest<T> {
anchor_offset: None,
limit: None,
calculate_total: request.calculate_total,
arguments: T::QueryArguments::default(),
arguments: request.arguments,
}
}
}