diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-06-17 07:39:51 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-06-17 07:39:51 +0900 |
| commit | 03f20599ba9d192b0c7de391af5d23b63168f18e (patch) | |
| tree | 36eeec8e382c419ba604f3403287ab9c8ebe4261 /src/remote | |
| parent | Update default home widgets (diff) | |
| download | sharkey-03f20599ba9d192b0c7de391af5d23b63168f18e.tar.gz sharkey-03f20599ba9d192b0c7de391af5d23b63168f18e.tar.bz2 sharkey-03f20599ba9d192b0c7de391af5d23b63168f18e.zip | |
Add missing semicolon
Diffstat (limited to 'src/remote')
| -rw-r--r-- | src/remote/activitypub/renderer/note.ts | 2 |
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}`, |