Remove APE file detection by content

Fixes #373
This commit is contained in:
Jonas Kvinge 2020-04-09 00:26:25 +02:00
parent 0094894b52
commit 6fe47e78f1
2 changed files with 6 additions and 2 deletions

View File

@ -91,8 +91,11 @@ bool APE::File::isSupported(IOStream *stream)
{
// An APE file has an ID "MAC " somewhere. An ID3v2 tag may precede.
const ByteVector buffer = Utils::readHeader(stream, bufferSize(), true);
return (buffer.find("MAC ") >= 0);
// FIXME:
//const ByteVector buffer = Utils::readHeader(stream, bufferSize(), true);
//return (buffer.find("MAC ") >= 0);
return false;
}
////////////////////////////////////////////////////////////////////////////////

View File

@ -14,6 +14,7 @@ Unreleased:
* Fixed Subsonic support to handle numeric Json values like track and disc both as strings and integers.
* Fixed Subsonic compatibility with LMS (Lightweight Music Server).
* Disabled "open Audio CD" from menu on Windows where CD support is currently not supported.
* Fixed files containing "MAC" being detected as Monkey's Audio.
Enhancements:
* Improved support for High DPI displays.