forked from pinks/eris
fix: cancel command
This commit is contained in:
parent
77231afa00
commit
10b57926ed
|
@ -4,7 +4,7 @@ import { Context } from "./mod.ts";
|
||||||
export async function cancelCommand(ctx: Context) {
|
export async function cancelCommand(ctx: Context) {
|
||||||
const jobs = await generationQueue.getAllJobs();
|
const jobs = await generationQueue.getAllJobs();
|
||||||
const userJobs = jobs
|
const userJobs = jobs
|
||||||
.filter((job) => job.lockUntil > new Date())
|
.filter((job) => job.lockUntil < new Date())
|
||||||
.filter((j) => j.state.from.id === ctx.from?.id);
|
.filter((j) => j.state.from.id === ctx.from?.id);
|
||||||
for (const job of userJobs) await generationQueue.deleteJob(job.id);
|
for (const job of userJobs) await generationQueue.deleteJob(job.id);
|
||||||
await ctx.reply(`Cancelled ${userJobs.length} jobs`);
|
await ctx.reply(`Cancelled ${userJobs.length} jobs`);
|
||||||
|
|
Loading…
Reference in New Issue