Skip to content

Commit

Permalink
MythMusic: Use the metadata format specified by the user for shoutcas…
Browse files Browse the repository at this point in the history
…t streams

For some reason the format was being forced to '%a - %t' which works 99% of
the time anyway.
  • Loading branch information
Paul Harrison committed Aug 4, 2013
1 parent 277feb5 commit 0505988
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions mythplugins/mythmusic/mythmusic/shoutcast.cpp
Expand Up @@ -878,9 +878,7 @@ void DecoderIOFactoryShoutCast::shoutcastMeta(const QString &metadata)
QString("DecoderIOFactoryShoutCast: metadata changed - %1")
.arg(metadata));
ShoutCastMetaParser parser;
// FIXME:
//parser.setMetaFormat(getMetadata().MetadataFormat());
parser.setMetaFormat("%a - %t");
parser.setMetaFormat(getMetadata().MetadataFormat());

ShoutCastMetaMap meta_map = parser.parseMeta(metadata);

Expand Down

0 comments on commit 0505988

Please sign in to comment.