fix libtags m4a issue

This commit is contained in:
jacqueline
2023-07-31 12:19:04 +10:00
parent 34a4207fb9
commit d41de537a0
2 changed files with 2 additions and 7 deletions
-6
View File
@@ -113,12 +113,6 @@ auto TagParserImpl::ReadAndParseTags(const std::string& path, TrackTags* out)
}
}
if (path.ends_with(".m4a")) {
// TODO(jacqueline): Re-enabled once libtags is fixed.
ESP_LOGW(kTag, "skipping m4a %s", path.c_str());
return false;
}
libtags::Aux aux;
aux.tags = out;
if (f_stat(path.c_str(), &aux.info) != FR_OK ||