This commit is contained in:
Liu Hancheng 2022-03-25 21:36:11 +08:00
parent ce12000af3
commit c7b489f8cb
1 changed files with 1 additions and 4 deletions

View File

@ -35,13 +35,10 @@ impl Display for DocumentFormatError {
Self::Internal(e) => write!(f, "An internal error has occurred: `{}`.", e),
Self::MalformedPayload(me, b) => match me.borrow() {
milli::documents::Error::JsonError(se) => {
// "invalid type: {}, expected {}"
let mut serde_msg = se.to_string();
// https://github.com/meilisearch/meilisearch/issues/2107
// The user input maybe insanely long. We need to truncate it.
let mut serde_msg = se.to_string();
let prefix = r#"invalid type: string ""#;
if serde_msg.starts_with(prefix) {
let start_idx = prefix.len();
if let Some(end_idx) = serde_msg.rfind("\"") {