Skip to content

Commit

Permalink
MythMusic: treat all metadata from MusicBrainz's freedb gateway as utf8
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Harrison committed May 11, 2013
1 parent e6d86d0 commit fa9c534
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythplugins/mythmusic/mythmusic/cddb.cpp
Expand Up @@ -317,7 +317,7 @@ Cddb::Album& Cddb::Album::operator =(const QString& rhs)

enum { kNorm, kToc } eState = kNorm;

QString cddb = rhs;
QString cddb = QString::fromUtf8(rhs.toAscii().constData());
while (!cddb.isEmpty())
{
// Lines should be of the form "FIELD=value\r\n"
Expand Down

0 comments on commit fa9c534

Please sign in to comment.