From 180a5719b829cfa5295d8092e7dc1df936d7ee08 Mon Sep 17 00:00:00 2001 From: Ryan Fox Date: Fri, 21 Jan 2022 02:11:52 -0800 Subject: [PATCH] Do not link mentions to external profiles --- src/View/Status.elm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/View/Status.elm b/src/View/Status.elm index 15f7839..f0e820e 100644 --- a/src/View/Status.elm +++ b/src/View/Status.elm @@ -210,7 +210,7 @@ statusActionsView status currentUser showApp = mentionView : Mention -> Html Msg mentionView mention = a - [ href mention.url + [ href ("#account/"++mention.id) , class "mention" ] [ text <| "@" ++ mention.username ]