selializers - posts: unneed async-await

Promise.all resolves all Promise, and selializeDriveFile returns Promise.
This commit is contained in:
otofune 2017-11-05 21:11:16 +09:00
parent 0e8a4f36a2
commit 78487934c7

View file

@ -84,8 +84,8 @@ const self = (
// Populate media // Populate media
if (_post.media_ids) { if (_post.media_ids) {
_post.media = await Promise.all(_post.media_ids.map(async fileId => _post.media = await Promise.all(_post.media_ids.map(fileId =>
await serializeDriveFile(fileId) serializeDriveFile(fileId)
)); ));
} }