This commit is contained in:
Dominik Pantůček 2023-04-06 21:53:08 +02:00
parent eec8de4e85
commit 8bf4a882e3

View file

@ -163,7 +163,7 @@
(let loop ((ml-emails (mailman-list-members ml)))
(when (not (null? ml-emails))
(let ((email (car ml-emails)))
(when (member email emails)
(when (not (member email emails))
(mailman-ensure-not-member ml email))
(loop (cdr ml-emails))))))