Skip to content

Commit

Permalink
Merge pull request #67 from wasade/lowercase
Browse files Browse the repository at this point in the history
emails to lowercase
  • Loading branch information
wasade authored Dec 15, 2020
2 parents 4fe47ef + e50915a commit 6b67012
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion microsetta_admin/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ def email_stats():
project = None

# de-duplicate
emails = list(set(emails))
emails = list({e.lower() for e in emails})

status, result = APIRequest.post(
'/api/admin/account_email_summary',
Expand Down

0 comments on commit 6b67012

Please sign in to comment.