Skip to content
Snippets Groups Projects
Unverified Commit 0ab50f87 authored by Namekuji's avatar Namekuji Committed by GitHub
Browse files

fix #10651 (#10684)

parent 09764b90
No related branches found
No related tags found
No related merge requests found
......@@ -41,7 +41,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> {
this.usersRepository.findOneByOrFail({ id: f.followeeId }),
])));
this.queueService.createUnfollowJob(pairs.map(p => ({ to: p[0], from: p[1], silent: true })));
this.queueService.createUnfollowJob(pairs.map(p => ({ from: p[0], to: p[1], silent: true })));
});
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment