bugfix: Task.tags failed when null was passed
All checks were successful
Build Docker Image / Docker-Build (push) Successful in 2m11s
Build Docker Image / Clean-Registry (push) Successful in 3s

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2026-01-12 23:17:22 +01:00
parent 1c104af4a6
commit 2e858e8506

View File

@@ -220,7 +220,7 @@ public class Task implements Mappable {
public Task tags(Collection<String> newValue){
tags.clear();
tags.addAll(newValue);
if (newValue != null) tags.addAll(newValue);
return this;
}