mirror of
https://github.com/clementine-player/Clementine
synced 2024-12-15 10:48:33 +01:00
Fix UTF8 characters in metadata received from gstreamer. Affects issue #229
This commit is contained in:
parent
4326c54bf2
commit
a56107c598
@ -234,7 +234,7 @@ QString GstEnginePipeline::ParseTag(GstTagList* list, const char* tag) const {
|
||||
|
||||
QString ret;
|
||||
if (success && data) {
|
||||
ret = data;
|
||||
ret = QString::fromUtf8(data);
|
||||
g_free(data);
|
||||
}
|
||||
return ret.trimmed();
|
||||
|
Loading…
Reference in New Issue
Block a user