signatures: Remove useless Value > Value conversion

This commit is contained in:
Jonas Platte 2020-09-29 23:21:17 +02:00
parent 5ab9c4dc19
commit 54ba6d10fe
No known key found for this signature in database
GPG Key ID: 7D261D771D915378

View File

@ -171,7 +171,7 @@ where
map.insert("signatures".into(), to_value(signature_map)?); map.insert("signatures".into(), to_value(signature_map)?);
if let Some(unsigned) = maybe_unsigned { if let Some(unsigned) = maybe_unsigned {
map.insert("unsigned".into(), to_value(unsigned)?); map.insert("unsigned".into(), unsigned);
} }
Ok(()) Ok(())