Skip to content

Commit

Permalink
fix: join won't work?
Browse files Browse the repository at this point in the history
  • Loading branch information
Ovler-Young committed Jun 29, 2024
1 parent 6fce06b commit 9ba80ee
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/lib/server/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,11 @@ const handle_source = async (ctx: Context, source_type: string, source_id: strin
});
return;
} else {
await ctx.reply(`Some items have not been processed yet after half an hour, they are: \n${remainingBvids.join(', ')}.`, {
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}`, {
reply_markup,
});
return;
Expand Down

0 comments on commit 9ba80ee

Please sign in to comment.