Merge branch 'main' into enhance-language-detection

This commit is contained in:
ManyTheFish
2023-02-20 18:14:34 +01:00
202 changed files with 10490 additions and 3066 deletions

View File

@ -59,6 +59,7 @@ pub fn extract_geo_points<R: io::Read + io::Seek>(
} else if lat.is_some() && lng.is_none() {
return Err(GeoError::MissingLongitude { document_id: document_id() })?;
}
// else => the _geo object was `null`, there is nothing to do
}
writer_into_reader(writer)