From 92541572f6effdb2b23076deb5c3b6a445ba7e16 Mon Sep 17 00:00:00 2001
From: Volker Schukai <volker.schukai@schukai.com>
Date: Sun, 17 Dec 2023 17:17:59 +0100
Subject: [PATCH] fix: implementation of interface failes #40

---
 job.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/job.go b/job.go
index 80444ec..d6a6c54 100644
--- a/job.go
+++ b/job.go
@@ -264,7 +264,7 @@ func (j *Job[T]) Execute(ctx context.Context) (RunGenericResult, error) {
 		newLog.ErrorMsg = runnerError.Error()
 	}
 
-	newLog.Result = CheckAndCallGetResult(r.Data)
+	newLog.Result = CheckAndCallGetResult(&r.Data)
 
 	j.logs = append(j.logs, newLog)
 
-- 
GitLab