This causes Android 15+ to append .ogx to downloaded files (e.g. Echo_samples.ogg.ogx), because Android's guessFileNameRfc6266 maps application/ogg to .ogx.
Reproduction:
curl -I https://upload.wikimedia.org/wikipedia/commons/4/42/Echo_samples.ogg
Returns: content-type: application/ogg
Expected: content-type: audio/ogg
Impact:
Users downloading audio files from Wikipedia on Android 15+ receive files with a .ogg.ogx double extension. These files cannot be easily shared or opened in most apps and media players, as .ogx is not a recognized audio format.
Fix:
Configure the web server to serve .ogg files as audio/ogg (or video/ogg for video content), and reserve application/ogg for .ogx only, per RFC 5334.
Detailed analysis: https://file-converter-online.com/why-android-15-downloads-ogg-files-as-ogg-ogx-a-mime-type-analysis/