From b4c6656e67188d38fd2019c7c51c98a5572b7671 Mon Sep 17 00:00:00 2001 From: aviupadhyayula Date: Mon, 25 Nov 2024 12:13:07 -0800 Subject: [PATCH] Address nits --- backend/clubs/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/clubs/views.py b/backend/clubs/views.py index 9ff22ae0e..6d03c9607 100644 --- a/backend/clubs/views.py +++ b/backend/clubs/views.py @@ -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"},