You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Encore::EncoreLog(LOG_INFO, TextFormat("CACHE: Read metadata for INI song %s - %s from %s", song.title.c_str(), song.artist.c_str(), infoPath.string().c_str()));
260
-
} catch (const std::exception& e) {
261
-
Encore::EncoreLog(LOG_ERROR, TextFormat("CACHE: Failed to read metadata for INI song %s - %s from %s: %s", song.title.c_str(), song.artist.c_str(), infoPath.string().c_str(), e.what()));
262
-
song.source = "Unknown Source";
263
-
song.releaseYear = "Unknown Year";
264
-
song.previewStartTime = 500;
265
-
}
266
-
} else {
267
-
song.source = "Unknown Source";
268
-
song.releaseYear = "Unknown Year";
269
-
song.previewStartTime = 500;
270
-
Encore::EncoreLog(LOG_INFO, TextFormat("CACHE: No info.json for INI song %s - %s, using default metadata", song.title.c_str(), song.artist.c_str()));
271
-
}
272
228
} else {
273
229
// If this folder doesn't have song.ini or song.json, this must be a organizational folder; continue scanning.
274
230
for (constauto &entry : std::filesystem::directory_iterator(folder)) {
0 commit comments