diff --git a/servers/su/src/domain/clients/local_store/store.rs b/servers/su/src/domain/clients/local_store/store.rs index ca2a9b891..8fc867a39 100644 --- a/servers/su/src/domain/clients/local_store/store.rs +++ b/servers/su/src/domain/clients/local_store/store.rs @@ -463,9 +463,7 @@ impl DataStore for LocalStoreClient { */ let include_process = process_in.assignment.is_some() && match from { - Some(ref from_timestamp) => { - from_timestamp != &process_in.timestamp()?.to_string() - }, + Some(ref _from_timestamp) => false, /* No 'from' means it's the first page */ diff --git a/servers/su/src/domain/clients/store.rs b/servers/su/src/domain/clients/store.rs index c5f970d76..d4aa34406 100644 --- a/servers/su/src/domain/clients/store.rs +++ b/servers/su/src/domain/clients/store.rs @@ -920,7 +920,7 @@ impl DataStore for StoreClient { let from_timestamp = from_timestamp_str .parse::() .map_err(StoreErrorType::from)?; - from_timestamp != process_in.process.timestamp + from_timestamp == process_in.process.timestamp } None => true, // No 'from' timestamp means it's the first page }; diff --git a/servers/su/su b/servers/su/su index 9f910b66f..d5f7c220d 100644 Binary files a/servers/su/su and b/servers/su/su differ