Skip to content

Commit

Permalink
Revert "fix: join won't work?"
Browse files Browse the repository at this point in the history
This reverts commit 9ba80ee.
  • Loading branch information
Ovler-Young committed Jun 29, 2024
1 parent 577e376 commit 9fe6784
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/lib/server/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -296,11 +296,7 @@ const handle_source = async (ctx: Context, source_type: string, source_id: strin
});
return;
} else {
let remainingBvidsText = '';
for (let i = 0; i < remainingBvids.length; i++) {
remainingBvidsText += remainingBvids[i] + '\n';
}
await ctx.reply(`Some items have not been processed yet after 30 checks, they are: \n${remainingBvidsText}`, {
await ctx.reply(`Some items have not been processed yet after 30 checks, they are: \n${remainingBvids.join(', ')}.`, {
reply_markup,
});
return;
Expand Down

0 comments on commit 9fe6784

Please sign in to comment.