Refactor: remove needless await

This commit is contained in:
syuilo 2018-09-13 02:07:03 +09:00
parent b770819977
commit e61f0175a2
2 changed files with 2 additions and 4 deletions

View file

@ -73,8 +73,7 @@ export default (params: any, me: ILocalUser) => new Promise(async (res, rej) =>
}
// Serialize
const users = await Promise.all(following.map(async f =>
await pack(f.followerId, me, { detail: true })));
const users = await Promise.all(following.map(f => pack(f.followerId, me, { detail: true })));
// Response
res({

View file

@ -73,8 +73,7 @@ export default (params: any, me: ILocalUser) => new Promise(async (res, rej) =>
}
// Serialize
const users = await Promise.all(following.map(async f =>
await pack(f.followeeId, me, { detail: true })));
const users = await Promise.all(following.map(f => pack(f.followeeId, me, { detail: true })));
// Response
res({