Add a fqn field to blogs and users (#457)

Fixes #319
This commit is contained in:
Baptiste Gelez
2019-03-06 18:28:10 +01:00
committed by GitHub
parent eff2698664
commit fe6e69d7c4
39 changed files with 258 additions and 141 deletions
+1 -1
View File
@@ -71,7 +71,7 @@ impl Mention {
.set_href_string(user.ap_url.clone())?;
mention
.link_props
.set_name_string(format!("@{}", user.get_fqn(conn)))?;
.set_name_string(format!("@{}", user.fqn))?;
Ok(mention)
}