diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-04-01 18:28:10 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-04-01 18:28:10 +0900 |
| commit | 0cb6fbea8c8cf451b33fde510a1008ecd4884e80 (patch) | |
| tree | 02c4aa60a35f5ed143398a81ec28b742cbb5e6fe /src/server | |
| parent | Fix type annotation (diff) | |
| download | sharkey-0cb6fbea8c8cf451b33fde510a1008ecd4884e80.tar.gz sharkey-0cb6fbea8c8cf451b33fde510a1008ecd4884e80.tar.bz2 sharkey-0cb6fbea8c8cf451b33fde510a1008ecd4884e80.zip | |
Refactor: Better variable name
Diffstat (limited to 'src/server')
| -rw-r--r-- | src/server/activitypub/post.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/activitypub/post.ts b/src/server/activitypub/post.ts index 261d7ca4a5..bdfce0606d 100644 --- a/src/server/activitypub/post.ts +++ b/src/server/activitypub/post.ts @@ -36,7 +36,7 @@ app.get('/@:user/:post', async (req, res, next) => { return res.sendStatus(404); } - const asyncFiles = DriveFile.find({ _id: { $in: post.mediaIds } }); + const promisedFiles = DriveFile.find({ _id: { $in: post.mediaIds } }); let inReplyTo; if (post.replyId) { @@ -69,7 +69,7 @@ app.get('/@:user/:post', async (req, res, next) => { to: 'https://www.w3.org/ns/activitystreams#Public', cc: `${attributedTo}/followers`, inReplyTo, - attachment: (await asyncFiles).map(({ _id, contentType }) => ({ + attachment: (await promisedFiles).map(({ _id, contentType }) => ({ type: 'Document', mediaType: contentType, url: `${config.drive_url}/${_id}` |