From 560ae523a803a481e8aa60376e810b01ed800088 Mon Sep 17 00:00:00 2001 From: bleakgrey Date: Thu, 17 May 2018 20:31:52 +0300 Subject: [PATCH] Allow links in account view --- src/Views/AccountView.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Views/AccountView.vala b/src/Views/AccountView.vala index 364d733..4803426 100644 --- a/src/Views/AccountView.vala +++ b/src/Views/AccountView.vala @@ -133,7 +133,7 @@ public class Tootle.AccountView : Tootle.HomeView { public void rebind (){ display_name.label = "%s".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);