CDImage: Use display name for playlist titles

This commit is contained in:
Connor McLaughlin 2021-08-20 23:59:07 +10:00
parent 1081c132cf
commit 7eceee6a20
1 changed files with 4 additions and 1 deletions

View File

@ -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;
} }