From 2d42c872855cfda60b81c4edb2a2db5145f1d596 Mon Sep 17 00:00:00 2001 From: Ralph Slooten Date: Sat, 21 Jun 2025 17:03:25 +1200 Subject: [PATCH] Remove redundant check --- internal/storage/tagfilters.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/storage/tagfilters.go b/internal/storage/tagfilters.go index 9ca5359..f46a50d 100644 --- a/internal/storage/tagfilters.go +++ b/internal/storage/tagfilters.go @@ -33,7 +33,7 @@ func LoadTagFilters() { logger.Log().Warnf("[tags] ignoring tag item with missing 'match'") continue } - if t.Tags == nil || len(t.Tags) == 0 { + if len(t.Tags) == 0 { logger.Log().Warnf("[tags] ignoring tag items with missing 'tags' array") continue }