fmt after my suggestion

This commit is contained in:
Tamo
2025-08-05 11:29:54 +02:00
parent 3d2c204f2d
commit 4c61a227ca

View File

@ -435,7 +435,9 @@ impl<'a> Filter<'a> {
if *last == u8::MAX { if *last == u8::MAX {
// u8::MAX is a forbidden UTF-8 byte, we're guaranteed it cannot be sent through a filter to meilisearch, but just in case, we're going to return something // u8::MAX is a forbidden UTF-8 byte, we're guaranteed it cannot be sent through a filter to meilisearch, but just in case, we're going to return something
tracing::warn!("Found non utf-8 character in filter. That shouldn't be possible"); tracing::warn!(
"Found non utf-8 character in filter. That shouldn't be possible"
);
return Ok(RoaringBitmap::new()); return Ok(RoaringBitmap::new());
} }
*last += 1; *last += 1;