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;
}
////////////////////////////////////////////////////////////////////////////////