ASXINI Parser: Return invalid entries.

This commit is contained in:
James D. Smith 2022-03-27 20:26:30 -06:00
parent 20c6ae6c14
commit f8137fbac5
1 changed files with 1 additions and 4 deletions

View File

@ -40,10 +40,7 @@ SongList AsxIniParser::Load(QIODevice* device, const QString& playlist_path,
QString value = line.mid(equals + 1);
if (key.startsWith("ref")) {
Song song = LoadSong(value, 0, dir);
if (song.is_valid()) {
ret << song;
}
ret << LoadSong(value, 0, dir);
}
}