From 93d7966db52dab6d982a000d1d09b24fb146856d Mon Sep 17 00:00:00 2001 From: Matthias Portzel Date: Sat, 7 May 2022 17:03:51 -0400 Subject: [PATCH] Add audio/mpeg, which the server uses for mp3 audio --- thoughts/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/thoughts/models.py b/thoughts/models.py index e2fd36f..314d3b4 100644 --- a/thoughts/models.py +++ b/thoughts/models.py @@ -56,6 +56,7 @@ ALLOWED_MEDIA_TYPES = { "image/jpeg": "jpeg", "audio/x-m4a": "m4a", "audio/mpegaudio/mpeg": "mp3", + "audio/mpeg": "mp3", "audio/x-hx-aac-adts": "aac", "video/mp4": "mp4", "video/quicktime": "mov",