From 603641a589f3e8d7ba7251d939258b383fea1a0d Mon Sep 17 00:00:00 2001 From: mr Date: Tue, 19 Nov 2024 12:01:14 +0100 Subject: [PATCH] hard stuff --- models/workflow/workflow_mongo_accessor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/workflow/workflow_mongo_accessor.go b/models/workflow/workflow_mongo_accessor.go index 9930047..4ab4314 100644 --- a/models/workflow/workflow_mongo_accessor.go +++ b/models/workflow/workflow_mongo_accessor.go @@ -164,7 +164,7 @@ func (wfa *workflowMongoAccessor) book(id string, realData *Workflow, execs []*w * share is a function that shares a workflow to the peers if the workflow is shared */ func (wfa *workflowMongoAccessor) share(realData *Workflow, delete bool, caller *tools.HTTPCaller) { - if realData.Shared == nil || len(realData.Shared) == 0 || caller.Disabled { // no shared no sharing + if realData == nil || realData.Shared == nil || len(realData.Shared) == 0 || caller.Disabled { // no shared no sharing return } for _, sharedID := range realData.Shared { // loop through the shared ids