mirror of
https://github.com/clangen/musikcube.git
synced 2024-11-19 20:13:36 +00:00
Fixed a bug where missing files were not being removed from the library.
I think this is desired behavior.
This commit is contained in:
parent
174d00b4d5
commit
191445d74f
@ -410,8 +410,7 @@ void Indexer::SyncDelete() {
|
||||
|
||||
db::Statement allTracks(
|
||||
"SELECT t.id, t.filename "
|
||||
"FROM tracks t "
|
||||
"WHERE p.id=?", this->dbConnection);
|
||||
"FROM tracks t ", this->dbConnection);
|
||||
|
||||
while(allTracks.Step() == db::Row && !this->Exited() && !this->Restarted()) {
|
||||
bool remove = false;
|
||||
|
Loading…
Reference in New Issue
Block a user