mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-05 19:59:30 +00:00
Follow clippy
This commit is contained in:
parent
1f62bf27f8
commit
b04edfa05e
1 changed files with 8 additions and 11 deletions
|
@ -884,18 +884,15 @@ impl FromId<DbConn> for PostUpdate {
|
|||
.content()
|
||||
.and_then(|content| content.to_as_string()),
|
||||
cover: None,
|
||||
source: updated
|
||||
.source()
|
||||
.and_then(|s| {
|
||||
serde_json::to_value(s).ok().and_then(|obj| {
|
||||
if !obj.is_object() {
|
||||
return None;
|
||||
}
|
||||
obj.get("content")
|
||||
.and_then(|content| content.as_str().map(|c| c.to_string()))
|
||||
})
|
||||
source: updated.source().and_then(|s| {
|
||||
serde_json::to_value(s).ok().and_then(|obj| {
|
||||
if !obj.is_object() {
|
||||
return None;
|
||||
}
|
||||
obj.get("content")
|
||||
.and_then(|content| content.as_str().map(|c| c.to_string()))
|
||||
})
|
||||
.map(|s| s.to_string()),
|
||||
}),
|
||||
license: None,
|
||||
tags: updated
|
||||
.tag()
|
||||
|
|
Loading…
Reference in a new issue