Fix bug for Mastodon(?)

This commit is contained in:
syuilo 2018-11-04 15:17:52 +09:00
parent 4cb040439f
commit 74ab5a34b5

View File

@ -4,7 +4,7 @@ import parse from '../../../mfm/parse';
export default function(note: INote) { export default function(note: INote) {
let html = toHtml(parse(note.text), note.mentionedRemoteUsers); let html = toHtml(parse(note.text), note.mentionedRemoteUsers);
if (html == null) html = ''; if (html == null) html = '<p>.</p>';
return html; return html;
} }