Fix displaying tag values of type DateTime in GUI

This commit is contained in:
Martchus 2020-04-24 23:08:53 +02:00
parent 5027fdd634
commit 4e324f0001
1 changed files with 1 additions and 0 deletions

View File

@ -57,6 +57,7 @@ QString tagValueToQString(const TagValue &value)
return QString::number(value.toInteger());
case TagDataType::StandardGenreIndex:
case TagDataType::TimeSpan:
case TagDataType::DateTime:
case TagDataType::PositionInSet:
return QString::fromStdString(value.toString());
default:;