Replaced UUID storage from str to array of bytes

This commit is contained in:
emeric
2026-06-13 16:54:21 +02:00
parent 309c39a572
commit af018a9166
43 changed files with 392 additions and 140 deletions
@@ -46,7 +46,7 @@ namespace lms::scanner
{
os << "'" << artist->getName() << "'";
if (const auto mbid{ artist->getMBID() })
os << " [" << mbid->getAsString() << "]";
os << " [" << mbid->toString() << "]";
return os;
}