CDImage: Use display name for playlist titles
This commit is contained in:
parent
1081c132cf
commit
7eceee6a20
|
@ -291,7 +291,10 @@ std::string CDImage::GetMetadata(const std::string_view& type) const
|
||||||
{
|
{
|
||||||
std::string result;
|
std::string result;
|
||||||
if (type == "title")
|
if (type == "title")
|
||||||
result = FileSystem::GetFileTitleFromPath(m_filename);
|
{
|
||||||
|
const std::string display_name(FileSystem::GetDisplayNameFromPath(m_filename));
|
||||||
|
result = FileSystem::StripExtension(display_name);
|
||||||
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue