Skip to content
Snippets Groups Projects
Commit 8cc34ea1 authored by luyikei's avatar luyikei
Browse files

Media: Fix returning percent-encoded title

parent 6e94447a
No related branches found
No related tags found
No related merge requests found
......@@ -88,7 +88,7 @@ Media::mrl() const
QString
Media::title() const
{
return QString::fromStdString( m_mlMedia->title() );
return QUrl::fromPercentEncoding( QByteArray( m_mlMedia->title().c_str() ) );
}
qint64
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment