mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 05:27:37 +03:00
Remove dependency on C++17
This commit is contained in:
parent
841c1129ff
commit
caeff2862a
1 changed files with 3 additions and 3 deletions
|
@ -57,9 +57,9 @@ int taglib_read(const char *filename, unsigned long id) {
|
||||||
if (mp3File->ID3v2Tag()) {
|
if (mp3File->ID3v2Tag()) {
|
||||||
const auto &frameListMap(mp3File->ID3v2Tag()->frameListMap());
|
const auto &frameListMap(mp3File->ID3v2Tag()->frameListMap());
|
||||||
|
|
||||||
for (const auto &[name, values] : frameListMap) {
|
for (const auto& kv : frameListMap) {
|
||||||
if (!values.isEmpty())
|
if (!kv.second.isEmpty())
|
||||||
tags.insert(name, values.front()->toString());
|
tags.insert(kv.first, kv.second.front()->toString());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue