diff options
author | jmarshallnz <jmarshallnz@svn> | 2010-11-26 21:37:34 +0000 |
---|---|---|
committer | jmarshallnz <jmarshallnz@svn> | 2010-11-26 21:37:34 +0000 |
commit | 21121acd7ad975e570076d79c0069a66ade2b1f0 (patch) | |
tree | e3c0b78b9d908926d8fa19487c28c1ada7b4f961 | |
parent | 38c6cb9d40c653f22ed60396f8424f5c56d5fef0 (diff) |
fixed: VorbisTag didn't respect "Description" tag. Thanks to ppmcbiggs (#10729)
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/branches/Dharma@35478 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
-rw-r--r-- | xbmc/VorbisTag.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/VorbisTag.cpp b/xbmc/VorbisTag.cpp index 98186bb889..d2f84af835 100644 --- a/xbmc/VorbisTag.cpp +++ b/xbmc/VorbisTag.cpp @@ -116,7 +116,7 @@ int CVorbisTag::ParseTagEntry(CStdString& strTagEntry) tag.SetMusicBrainzTRMID(strTagValue); } - if ( strTagType == "COMMENT" ) + if ( strTagType == "COMMENT" || strTagType == "DESCRIPTION" ) tag.SetComment(strTagValue); if ( strTagType == "LYRICS" ) |