feat(hermes): add bundled plugin channel configs

This commit is contained in:
晴天
2026-05-24 05:12:17 +08:00
parent b3d763c46a
commit ff4da27eeb
9 changed files with 1683 additions and 31 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -869,7 +869,7 @@ fn put_number_value_if_present(entry: &mut Map<String, Value>, key: &str, value:
}
return;
}
put_number_from_form(entry, key, &value.and_then(|v| v.as_str()).unwrap_or(""));
put_number_from_form(entry, key, value.and_then(|v| v.as_str()).unwrap_or(""));
}
fn normalize_numeric_form_value(map: &mut Map<String, Value>, key: &str) {