Fix bug where metadata thread would die on error

This commit is contained in:
IrosTheBeggar 2017-09-16 17:25:57 -04:00
parent 77927686dc
commit d6517c78b1

View File

@ -154,6 +154,7 @@ function parseFile(thisSong){
parseFilesGenerator.next();
}).catch(function (err) {
console.log("Warning: failed to parse file '%s': %s", thisSong, err.message);
parseFilesGenerator.next();
});
}