aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2021-05-01 09:15:23 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2021-05-01 09:15:23 +0000
commit6dfc79e34ccb6b3fbe4c4ef2608a95bfddbe92be (patch)
tree9614412ed3d7e85c336001dd5a46f8d333e2151f /src
parent6c91deb844fce4b92e92e565a9b6fc88727ac540 (diff)
downloadqmmp-6dfc79e34ccb6b3fbe4c4ef2608a95bfddbe92be.tar.gz
qmmp-6dfc79e34ccb6b3fbe4c4ef2608a95bfddbe92be.tar.bz2
qmmp-6dfc79e34ccb6b3fbe4c4ef2608a95bfddbe92be.zip
lyrics: fixed charset parameter parsing
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@9896 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src')
-rw-r--r--src/plugins/General/lyrics/ultimatelyricsparser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/General/lyrics/ultimatelyricsparser.cpp b/src/plugins/General/lyrics/ultimatelyricsparser.cpp
index 967bead84..14e3961a4 100644
--- a/src/plugins/General/lyrics/ultimatelyricsparser.cpp
+++ b/src/plugins/General/lyrics/ultimatelyricsparser.cpp
@@ -69,7 +69,7 @@ bool UltimateLyricsParser::load(const QString &path)
provider->setName(attrs.value("name").toString());
provider->setTitle(attrs.value("title").toString());
provider->setUrl(attrs.value("url").toString());
- provider->setCharset(attrs.value("charser").toString());
+ provider->setCharset(attrs.value("charset").toString());
m_providers << provider;
}
else if(reader.name() == "urlFormat" && !m_providers.isEmpty())