From e386981bec460c3d0f27ebc48d49746d319a4f4c Mon Sep 17 00:00:00 2001 From: Morgan McMillian Date: Tue, 27 Feb 2018 19:37:01 -0800 Subject: [PATCH] Switch to new parser for user profile text fixes #43 --- assets/ProfilePage.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/ProfilePage.qml b/assets/ProfilePage.qml index a0ca831..1947b8d 100644 --- a/assets/ProfilePage.qml +++ b/assets/ProfilePage.qml @@ -127,7 +127,7 @@ Page { preferredWidth: ui.du(45) Label { //text: lorem - text: Parser.parsePostData(user.content.html) + text: Parser.parsePostText(user.content) multiline: true textFormat: TextFormat.Html }