Fix inverted debug assert message.

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk
2025-10-21 15:48:05 +00:00
parent 158d44e1a9
commit 3b4fbb8c1a

View File

@@ -172,7 +172,7 @@ pub(crate) async fn sync_events_v5_route(
loop {
debug_assert!(
conn.globalsince <= conn.next_batch,
"next_batch should not be greater than since."
"since should not be greater than next_batch."
);
let window;