From 68a9dd7e052908c7ad70e4ce0f46e60252b478c7 Mon Sep 17 00:00:00 2001 From: jonaswinkler Date: Wed, 27 Jan 2021 15:23:29 +0100 Subject: [PATCH] fix an issue with upload status identification --- src-ui/src/app/services/consumer-status.service.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src-ui/src/app/services/consumer-status.service.ts b/src-ui/src/app/services/consumer-status.service.ts index 181e45e15..90ba4f0ef 100644 --- a/src-ui/src/app/services/consumer-status.service.ts +++ b/src-ui/src/app/services/consumer-status.service.ts @@ -43,10 +43,10 @@ export class FileStatus { updateProgress(status: FileStatusPhase, currentProgress?: number, maxProgress?: number) { if (status >= this.phase) { this.phase = status - if (currentProgress != undefined) { + if (currentProgress != null) { this.currentPhaseProgress = currentProgress } - if (maxProgress) { + if (maxProgress != null) { this.currentPhaseMaxProgress = maxProgress } } @@ -70,7 +70,7 @@ export class ConsumerStatusService { private documentConsumptionFailedSubject = new Subject() private get(taskId: string, filename?: string) { - let status = this.consumerStatus.find(e => e.taskId == taskId) || this.consumerStatus.find(e => e.filename == filename) + let status = this.consumerStatus.find(e => e.taskId == taskId) || this.consumerStatus.find(e => e.filename == filename && e.taskId == null) if (!status) { status = new FileStatus() this.consumerStatus.push(status)