aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/app/qmmp.desktop2
-rw-r--r--src/plugins/Input/flac/decoderflacfactory.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/app/qmmp.desktop b/src/app/qmmp.desktop
index 0d5b9bb46..24d44a371 100644
--- a/src/app/qmmp.desktop
+++ b/src/app/qmmp.desktop
@@ -22,7 +22,7 @@ Icon=qmmp
Terminal=false
Type=Application
Categories=AudioVideo;Player;Audio;Qt;
-MimeType=application/x-ogg;audio/mp3;audio/mpeg;audio/x-flac;audio/x-mp3;audio/x-mpeg;audio/x-ms-wma;audio/x-musepack;application/ogg;audio/x-vorbis+ogg;audio/x-scpls;audio/x-mpegurl;audio/x-it;audio/x-mod;audio/x-ape;application/x-cue;x-content/audio-cdda;audio/x-ffmpeg-shorten;
+MimeType=application/x-ogg;audio/mp3;audio/mpeg;audio/flac;audio/x-mp3;audio/x-mpeg;audio/x-ms-wma;audio/x-musepack;application/ogg;audio/x-vorbis+ogg;audio/x-scpls;audio/x-mpegurl;audio/x-it;audio/x-mod;audio/x-ape;application/x-cue;x-content/audio-cdda;audio/x-ffmpeg-shorten;
X-KDE-StartupNotify=false
X-Ayatana-Desktop-Shortcuts=Play;Pause;Stop;Previous;Next;
diff --git a/src/plugins/Input/flac/decoderflacfactory.cpp b/src/plugins/Input/flac/decoderflacfactory.cpp
index 2687a4697..163889099 100644
--- a/src/plugins/Input/flac/decoderflacfactory.cpp
+++ b/src/plugins/Input/flac/decoderflacfactory.cpp
@@ -57,7 +57,7 @@ const DecoderProperties DecoderFLACFactory::properties() const
properties.name = tr("FLAC Plugin");
properties.filters << "*.flac" << "*.oga";
properties.description = tr("FLAC Files");
- properties.contentTypes << "audio/x-flac";
+ properties.contentTypes << "audio/x-flac" << "audio/flac";
properties.shortName = "flac";
properties.protocols << "flac";
properties.hasAbout = true;