From 42c176f783361ee0d5227fd44680a35c8bb6f840 Mon Sep 17 00:00:00 2001 From: janWilejan <119548498+janWilejan@users.noreply.github.com> Date: Fri, 21 Jul 2023 21:34:07 +0000 Subject: [PATCH] Url gets its own paragraph in notification post (#3196) Co-authored-by: janWilejan <> --- activitypub/outbox/outbox.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activitypub/outbox/outbox.go b/activitypub/outbox/outbox.go index 043520e27..e035dd297 100644 --- a/activitypub/outbox/outbox.go +++ b/activitypub/outbox/outbox.go @@ -60,7 +60,7 @@ func SendLive() error { if title := data.GetStreamTitle(); title != "" { streamTitle = fmt.Sprintf("
%s
", title) } - textContent = fmt.Sprintf("%s
%s%s
%s", textContent, streamTitle, tagsString, data.GetServerURL(), data.GetServerURL()) + textContent = fmt.Sprintf("%s
%s%s
", textContent, streamTitle, tagsString, data.GetServerURL(), data.GetServerURL()) activity, _, note, noteID := createBaseOutboundMessage(textContent)