Skip to content

Commit fd845e7

Browse files
Fix Discord verbose tool progress delivery
1 parent a18c4f6 commit fd845e7

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

extensions/discord/src/monitor/message-handler.process.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -640,6 +640,7 @@ export async function processDiscordMessage(
640640
sessionKey: ctxPayload.SessionKey,
641641
threadBindings,
642642
mediaLocalRoots,
643+
kind: info.kind,
643644
});
644645
return true;
645646
},

src/auto-reply/reply/followup-runner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ export function createFollowupRunner(params: {
411411
};
412412
const drainProgressDeliveries = async () => {
413413
while (pendingProgressDeliveries.size > 0) {
414-
await Promise.all([...pendingProgressDeliveries]);
414+
await Promise.all(pendingProgressDeliveries);
415415
}
416416
};
417417
replyOperation = createReplyOperation({

0 commit comments

Comments
 (0)