diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/web/mastodon_api/views/status_view.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/web/mastodon_api/views/status_view.ex b/lib/pleroma/web/mastodon_api/views/status_view.ex index 3eca43a92..6962aa54f 100644 --- a/lib/pleroma/web/mastodon_api/views/status_view.ex +++ b/lib/pleroma/web/mastodon_api/views/status_view.ex @@ -216,7 +216,7 @@ defmodule Pleroma.Web.MastodonAPI.StatusView do content = if !!name and name != "" do - "<p><a href=\"#{object["url"]}\">#{name}</a></p>#{object["content"]}" + "<p><a href=\"#{object["id"]}\">#{name}</a></p>#{object["content"]}" else object["content"] end |