aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjmarshallnz <jmarshallnz@svn>2010-11-26 21:37:34 +0000
committerjmarshallnz <jmarshallnz@svn>2010-11-26 21:37:34 +0000
commit21121acd7ad975e570076d79c0069a66ade2b1f0 (patch)
treee3c0b78b9d908926d8fa19487c28c1ada7b4f961
parent38c6cb9d40c653f22ed60396f8424f5c56d5fef0 (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.cpp2
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" )