summaryrefslogtreecommitdiff
path: root/src/remote
diff options
context:
space:
mode:
Diffstat (limited to 'src/remote')
-rw-r--r--src/remote/activitypub/renderer/note.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/remote/activitypub/renderer/note.ts b/src/remote/activitypub/renderer/note.ts
index 39335a7cca..06956fd23f 100644
--- a/src/remote/activitypub/renderer/note.ts
+++ b/src/remote/activitypub/renderer/note.ts
@@ -56,7 +56,7 @@ export default async function renderNote(note: INote, dive = true) {
const hashtagTags = (note.tags || []).map(renderHashtag);
const mentionTags = (note.mentionedRemoteUsers || []).map(renderMention);
- const tag = hashtagTags.concat(mentionTags)
+ const tag = hashtagTags.concat(mentionTags);
return {
id: `${config.url}/notes/${note._id}`,