Update meilisearch/src/analytics/segment_analytics.rs

Co-authored-by: Louis Dureuil <louis@meilisearch.com>
This commit is contained in:
Tamo 2023-05-10 10:55:56 +02:00
parent d08f8690d2
commit c42a65a297
No known key found for this signature in database
GPG Key ID: 20CD8020AFA88D69

View File

@ -1218,7 +1218,7 @@ impl DocumentsFetchAggregator {
self.per_filter |= other.per_filter;
self.max_limit = self.max_limit.max(other.max_limit);
self.max_offset |= self.max_offset.max(other.max_offset);
self.max_offset = self.max_offset.max(other.max_offset);
}
pub fn into_event(self, user: &User, event_name: &str) -> Option<Track> {