tangled
alpha
login
or
join now
nonbinary.computer
/
jacquard
80
fork
atom
A better Rust ATProto crate
80
fork
atom
overview
issues
9
pulls
pipelines
slight error in cid-link value parse
Orual
5 months ago
47857bff
da4dcc67
0/0
Waiting for spindle ...
+1
-4
1 changed file
expand all
collapse all
unified
split
crates
jacquard-common
src
types
value.rs
+1
-4
crates/jacquard-common/src/types/value.rs
···
110
110
}
111
111
DataModelType::CidLink => {
112
112
if let Some(value) = value.as_str() {
113
113
-
map.insert(
114
114
-
key.to_smolstr(),
115
115
-
Data::String(AtprotoStr::Cid(Cid::Str(value.into()))),
116
116
-
);
113
113
+
map.insert(key.to_smolstr(), Data::CidLink(Cid::Str(value.into())));
117
114
} else {
118
115
map.insert(key.to_smolstr(), Data::from_json(value));
119
116
}