Skip to content

Commit

Permalink
Address nits
Browse files Browse the repository at this point in the history
  • Loading branch information
aviupadhyayula committed Nov 25, 2024
1 parent df498d0 commit b4c6656
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/clubs/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -3099,7 +3099,7 @@ def email_blast(self, request, *args, **kwargs):
officer_emails = event.club.get_officer_emails()
emails = list(holder_emails) + list(officer_emails)

content = request.data.get("content").strip()
content = request.data.get("content", "").strip()
if not content:
return Response(
{"detail": "Content must be specified"},
Expand Down

0 comments on commit b4c6656

Please sign in to comment.