diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2018-06-17 16:02:21 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-06-17 16:02:21 +0900 |
| commit | 44cd1e9223e7c7d4804794b5f61b0b7f927de61d (patch) | |
| tree | a63210a9784da7928662f4fb5e2cc467f1941951 /src/remote | |
| parent | Merge pull request #1722 from rinsuki/fix/1700 (diff) | |
| parent | fix #1726 (diff) | |
| download | misskey-44cd1e9223e7c7d4804794b5f61b0b7f927de61d.tar.gz misskey-44cd1e9223e7c7d4804794b5f61b0b7f927de61d.tar.bz2 misskey-44cd1e9223e7c7d4804794b5f61b0b7f927de61d.zip | |
Merge pull request #1728 from rinsuki/fix/1726
fix #1726
Diffstat (limited to 'src/remote')
| -rw-r--r-- | src/remote/activitypub/misc/get-note-html.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/remote/activitypub/misc/get-note-html.ts b/src/remote/activitypub/misc/get-note-html.ts index 5bca4eed62..33dd381689 100644 --- a/src/remote/activitypub/misc/get-note-html.ts +++ b/src/remote/activitypub/misc/get-note-html.ts @@ -6,7 +6,7 @@ import config from '../../../config'; export default function(note: INote) { if (note.text == null) return null; - let html = toHtml(parse(note.text)); + let html = toHtml(parse(note.text), note.mentionedRemoteUsers); if (note.poll != null) { const url = `${config.url}/notes/${note._id}`; |