1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-13 16:25:44 +02:00
This commit is contained in:
syuilo
2018-10-31 11:20:54 +09:00
parent 5e3372e932
commit 26c9d8ff6f
6 changed files with 8 additions and 8 deletions

View File

@@ -172,7 +172,7 @@ export const packMany = async (
skipHide?: boolean;
}
) => {
return (await Promise.all(notes.map(n => pack(n, me, options)))).filter(x => x != null);
return (await Promise.all(notes.map(n => pack(n, me, options))));
};
/**