Skip to content

Commit

Permalink
Fix mailing list issue (#3872)
Browse files Browse the repository at this point in the history
  • Loading branch information
T8902 authored Dec 12, 2024
1 parent 2923d8c commit dfe89ea
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion website/mailinglists/services.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,9 @@ def get_automatic_lists():
"collection of all committee lists",
"addresses": [
c.contact_address
for c in Committee.objects.all().select_related("contact_mailinglist")
for c in Committee.objects.all()
.filter(active=True)
.select_related("contact_mailinglist")
],
"moderated": True,
},
Expand Down

0 comments on commit dfe89ea

Please sign in to comment.