From c42e22f352746c715a64edbeb12d352da3bbcf9f Mon Sep 17 00:00:00 2001 From: kolaente Date: Thu, 21 Mar 2019 19:26:04 +0100 Subject: [PATCH] Fixed bulk update label tasks --- pkg/models/label_task.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/models/label_task.go b/pkg/models/label_task.go index 31df1fd25..4fc56fa0c 100644 --- a/pkg/models/label_task.go +++ b/pkg/models/label_task.go @@ -299,5 +299,5 @@ func (ltb *LabelTaskBulk) Create(a web.Auth) (err error) { if err != nil { return } - return task.updateTaskLabels(a, task.Labels) + return task.updateTaskLabels(a, ltb.Labels) }