diff options
-rw-r--r-- | guix-build-coordinator/datastore/sqlite.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/guix-build-coordinator/datastore/sqlite.scm b/guix-build-coordinator/datastore/sqlite.scm index e50f3d9..83475eb 100644 --- a/guix-build-coordinator/datastore/sqlite.scm +++ b/guix-build-coordinator/datastore/sqlite.scm @@ -1364,9 +1364,9 @@ SELECT id FROM tags WHERE key = :key" (tag->expression tag #f)) tags)) (not-tag-expressions - (map (lambda (tag) - (tag->expression tag #t)) - not-tags))) + (filter-map (lambda (tag) + (tag->expression tag #t)) + not-tags))) ;; If one of the requested tags doesn't exist, nothing can be tagged to ;; it, so just return nothing |