Skip to content

Commit

Permalink
πŸ› Allow transfer Value::Json to sea-orm.
Browse files Browse the repository at this point in the history
  • Loading branch information
langyo committed Jul 12, 2024
1 parent 5c8d185 commit fe6d843
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/database/src/providers/cloudflare.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ impl ProxyDb {
serde_json::Value::String(val) => {
Value::String(Some(Box::new(val.clone())))
}
_ => unreachable!("Unsupported JSON value"),
_ => Value::Json(Some(Box::new(value.clone()))),
},
);
}
Expand Down

0 comments on commit fe6d843

Please sign in to comment.