Commit 29e5dc44 authored by Max Kellermann's avatar Max Kellermann

db/upnp: don't sanitize the title tag

We need this only for path names.
parent 3a660c55
...@@ -246,7 +246,7 @@ upnpItemToSong(const UPnPDirObject &dirent, const char *uri) ...@@ -246,7 +246,7 @@ upnpItemToSong(const UPnPDirObject &dirent, const char *uri)
if (dirent.duration > 0) if (dirent.duration > 0)
tag.SetTime(dirent.duration); tag.SetTime(dirent.duration);
tag.AddItem(TAG_TITLE, titleToPathElt(dirent.m_title).c_str()); tag.AddItem(TAG_TITLE, dirent.m_title.c_str());
for (auto i = upnp_tags; i->name != nullptr; ++i) { for (auto i = upnp_tags; i->name != nullptr; ++i) {
const char *value = dirent.getprop(i->name); const char *value = dirent.getprop(i->name);
...@@ -306,7 +306,7 @@ getTagValue(UPnPDirObject& dirent, TagType tag, ...@@ -306,7 +306,7 @@ getTagValue(UPnPDirObject& dirent, TagType tag,
{ {
if (tag == TAG_TITLE) { if (tag == TAG_TITLE) {
if (!dirent.m_title.empty()) { if (!dirent.m_title.empty()) {
tagvalue = titleToPathElt(dirent.m_title); tagvalue = dirent.m_title;
return true; return true;
} }
return false; return false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment