From 8a82669a360ea06af8d7e2fea753b07e825e587d Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Sun, 19 May 2019 16:30:01 +0200 Subject: [PATCH] fix(core): update --- ts/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ts/index.ts b/ts/index.ts index 92918ee..ddeae6c 100644 --- a/ts/index.ts +++ b/ts/index.ts @@ -23,8 +23,8 @@ export class SmartlogSourceOra { this.started = false; } - public finishFail() { - this.oraInstance.fail(); + public finishFail(textArg?: string) { + this.oraInstance.fail(textArg); this.started = false; }