aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2007-08-16 07:44:20 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2007-08-16 07:44:20 +0000
commitf5ea9657359cded0a17ddcf10c23c7b616bb7bd3 (patch)
tree7156bc4f4a4214585f1825dede531bc9d5339bc4
parentb61fa7935b25329118e58397babf021e5b87abc5 (diff)
downloadqmmp-f5ea9657359cded0a17ddcf10c23c7b616bb7bd3.tar.gz
qmmp-f5ea9657359cded0a17ddcf10c23c7b616bb7bd3.tar.bz2
qmmp-f5ea9657359cded0a17ddcf10c23c7b616bb7bd3.zip
fixed id3tag detection
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@94 90c681e8-e032-0410-971d-27865f9a5e38
-rw-r--r--lib/qmmp/Input/mad/id3tag.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/qmmp/Input/mad/id3tag.cpp b/lib/qmmp/Input/mad/id3tag.cpp
index 473afd997..35086f8a8 100644
--- a/lib/qmmp/Input/mad/id3tag.cpp
+++ b/lib/qmmp/Input/mad/id3tag.cpp
@@ -89,7 +89,7 @@ ID3Tag::ID3Tag(const QString &source): FileTag(), m_tag(0)
if (settings.value("ID3v1_enable", TRUE).toBool() &&
fileRef.ID3v1Tag())
{
- if(fileRef.ID3v1Tag()->isEmpty())
+ if(!fileRef.ID3v1Tag()->isEmpty())
{
m_tag = fileRef.ID3v1Tag();
codec = codec_v1;