From 3b4fbb8c1a7382b55e1707a99a6dd102253fa277 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Tue, 21 Oct 2025 15:48:05 +0000 Subject: [PATCH] Fix inverted debug assert message. Signed-off-by: Jason Volk --- src/api/client/sync/v5.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/client/sync/v5.rs b/src/api/client/sync/v5.rs index be68d6e2..45eb23d5 100644 --- a/src/api/client/sync/v5.rs +++ b/src/api/client/sync/v5.rs @@ -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;