nicer string handling

This commit is contained in:
Felix Ableitner 2019-11-15 16:08:14 +01:00
parent 4f116dc758
commit 10976bd656
1 changed files with 3 additions and 3 deletions

View File

@ -42,10 +42,10 @@ pub fn node_info() -> Result<Json<NodeInfo>, Error> {
Err(_e) => return Err(_e)?,
};
let json = Json(NodeInfo {
version: "2.0".to_string(),
version: String::from("2.0"),
software: Software {
name: "lemmy".to_string(),
version: version::VERSION.to_string(),
name: String::from("lemmy"),
version: String::from(version::VERSION),
},
protocols: [], // TODO: put 'activitypub' once that is implemented
usage: Usage {