Allow links in account view

This commit is contained in:
bleakgrey 2018-05-17 20:31:52 +03:00
parent 3ca73ee3e0
commit 560ae523a8
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ public class Tootle.AccountView : Tootle.HomeView {
public void rebind (){
display_name.label = "<b>%s</b>".printf (account.display_name);
username.label = "@" + account.acct;
note.label = Utils.escape_html (account.note);
note.label = Utils.simplify_html (account.note);
button_follow.visible = !account.is_self ();
Tootle.network.load_avatar (account.avatar, avatar, 128);