aboutsummaryrefslogtreecommitdiff
path: root/guix-data-service/poll-git-repository.scm
diff options
context:
space:
mode:
Diffstat (limited to 'guix-data-service/poll-git-repository.scm')
-rw-r--r--guix-data-service/poll-git-repository.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/guix-data-service/poll-git-repository.scm b/guix-data-service/poll-git-repository.scm
index 124c559..2ed5644 100644
--- a/guix-data-service/poll-git-repository.scm
+++ b/guix-data-service/poll-git-repository.scm
@@ -170,9 +170,9 @@
(filter
(lambda (branch-name)
(let ((excluded-branch?
- (member branch-name excluded-branches string=?))
+ (branch-in-list? excluded-branches branch-name))
(included-branch?
- (member branch-name included-branches string=?)))
+ (branch-in-list? included-branches branch-name)))
(and (not excluded-branch?)
(or (null? included-branches)
included-branch?))))