1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-21 00:12:06 +02:00

Support <location> element in XSPFs

This commit is contained in:
Leo Franchi 2012-09-21 15:41:44 -04:00
parent 807eacd272
commit cb6233bbfe

View File

@ -232,6 +232,10 @@ XSPFLoader::gotBody()
{
url = n.text();
}
else if ( n.namespaceURI() == m_NS && n.localName() == "location" )
{
url = n.text();
}
}
if ( artist.isEmpty() || track.isEmpty() )