From f882ebc58e894ad6162990a1115aaacb20db6323 Mon Sep 17 00:00:00 2001 From: Naz Date: Thu, 16 Dec 2021 10:58:39 +0400 Subject: [PATCH] Added support for additional wav MIME types refs https://github.com/TryGhost/Toolbox/issues/95 refs https://github.com/TryGhost/Ghost/commit/975750afe9c62dbf4e09faa75929c3dd06f53d0f - The `audio/x-wav`, `audio/wav`, and `audio/wave` are also commonly used MIME types for the .wav files. - As a reference for these new types used https://github.com/jshttp/mime-db --- core/shared/config/overrides.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/shared/config/overrides.json b/core/shared/config/overrides.json index e749d76d47..07a1df9d9d 100644 --- a/core/shared/config/overrides.json +++ b/core/shared/config/overrides.json @@ -38,6 +38,9 @@ "video/ogg", "audio/mpeg", "audio/vnd.wav", + "audio/wave", + "audio/wav", + "audio/x-wav", "audio/ogg" ] },