mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-12-23 19:53:07 +02:00
fix typo
This commit is contained in:
parent
751e655d72
commit
26c89e053d
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ export default define(meta, paramDef, async (ps) => {
|
|||
]);
|
||||
|
||||
const gotSubCount = topSubInstances.map(x => x.followersCount).reduce((a, b) => a + b, 0);
|
||||
const gotPubCount = topSubInstances.map(x => x.followingCount).reduce((a, b) => a + b, 0);
|
||||
const gotPubCount = topPubInstances.map(x => x.followingCount).reduce((a, b) => a + b, 0);
|
||||
|
||||
return await awaitAll({
|
||||
topSubInstances: Instances.packMany(topSubInstances),
|
||||
|
|
Loading…
Reference in a new issue