From 54dcc10250cce8bfadf424245252719fea8a3896 Mon Sep 17 00:00:00 2001 From: syuilo Date: Sun, 4 Nov 2018 15:17:52 +0900 Subject: [PATCH] Fix bug for Mastodon(?) --- src/remote/activitypub/misc/get-note-html.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/remote/activitypub/misc/get-note-html.ts b/src/remote/activitypub/misc/get-note-html.ts index 0a607bd48..a159bf902 100644 --- a/src/remote/activitypub/misc/get-note-html.ts +++ b/src/remote/activitypub/misc/get-note-html.ts @@ -4,7 +4,7 @@ import parse from '../../../mfm/parse'; export default function(note: INote) { let html = toHtml(parse(note.text), note.mentionedRemoteUsers); - if (html == null) html = ''; + if (html == null) html = '

.

'; return html; }