Empty post bodies (#2050)
* Cleaning optional post bodies. Fixes #2039 * Only trim once. * Using .map() instead. * Revert "Using .map() instead." This reverts commit a2f49072095e0c0622c4a7d041dcea81e11fe1dc.
This commit is contained in:
parent
f23fed70bc
commit
16271b0a4c
1 changed files with 10 additions and 1 deletions
|
@ -176,7 +176,16 @@ pub fn clean_url_params(mut url: Url) -> Url {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn clean_optional_text(text: &Option<String>) -> Option<String> {
|
pub fn clean_optional_text(text: &Option<String>) -> Option<String> {
|
||||||
text.as_ref().map(|t| t.trim().to_string())
|
if let Some(text) = text {
|
||||||
|
let trimmed = text.trim();
|
||||||
|
if trimmed.is_empty() {
|
||||||
|
None
|
||||||
|
} else {
|
||||||
|
Some(trimmed.to_owned())
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
None
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
|
|
Loading…
Reference in a new issue