refactor: avoid redundant method chain

This commit is contained in:
Acid Chicken (硫酸鶏)
2023-07-21 10:07:03 +00:00
committed by GitHub
parent a8cd8ed99e
commit c9b9db13c7

View File

@@ -108,7 +108,7 @@ export class QueueService {
removeOnFail: true, removeOnFail: true,
}; };
await this.deliverQueue.addBulk(Array.from(inboxes.entries()).map(d => ({ await this.deliverQueue.addBulk(Array.from(inboxes.entries(), d => ({
name: d[0], name: d[0],
data: { data: {
user, user,