Add:Cancel m4b merge button #1008

This commit is contained in:
advplyr 2022-10-02 14:31:04 -05:00
parent 39979ff8a3
commit 02d997897c
5 changed files with 52 additions and 10 deletions

View file

@ -12,7 +12,7 @@ class TaskManager {
taskFinished(task) {
if (this.tasks.some(t => t.id === task.id)) {
this.tasks = this.tasks.filter(t => t !== task.id)
this.tasks = this.tasks.filter(t => t.id !== task.id)
this.emitter('task_finished', task.toJSON())
}
}