From e733b462df1a3b8014e667f7cd225689960c0947 Mon Sep 17 00:00:00 2001 From: mechtelm <nicht@mehr.fragen> Date: Tue, 19 May 2020 09:12:45 +0200 Subject: [PATCH] bugfix sending unit log after terminate #134 --- src/app/test-controller/test-controller.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/test-controller/test-controller.service.ts b/src/app/test-controller/test-controller.service.ts index f19b3e5c..20e4cbe8 100644 --- a/src/app/test-controller/test-controller.service.ts +++ b/src/app/test-controller/test-controller.service.ts @@ -16,7 +16,7 @@ import { import {BackendService} from './backend.service'; import {Router} from "@angular/router"; import {TestMode} from "../config/test-mode"; -import { BookletConfig } from '../config/booklet-config'; +import {BookletConfig} from '../config/booklet-config'; @Injectable({ providedIn: 'root' @@ -214,7 +214,7 @@ export class TestControllerService { } } public addUnitLog(unitDbKey: string, logKey: LogEntryKey, entry = '') { - if (this.testMode.saveResponses) { + if (this.testMode.saveResponses && this.testStatus$.getValue() === TestStatus.RUNNING) { this.bs.addUnitLog(this.testId, Date.now(), unitDbKey, entry.length > 0 ? logKey + ': ' + JSON.stringify(entry) : logKey).subscribe(ok => { if (!ok) { -- GitLab