Fix job count for waiting jobs

This commit is contained in:
Chocobozzz
2024-02-15 13:40:53 +01:00
parent acd9eaeb1d
commit 4300cc1ee1

View File

@@ -445,7 +445,7 @@ class JobQueue {
}
async count (state: JobState, jobType?: JobType): Promise<number> {
const states = state ? [ state ] : jobStates
const states = this.buildStateFilter(state)
const filteredJobTypes = this.buildTypeFilter(jobType)
let total = 0