* Fixing a bug responsible of masking ongoing downloads while deleting an other content

This commit is contained in:
kelson42 2011-09-18 14:13:19 +00:00
parent cf07bf827b
commit 8f43bcc954
1 changed files with 2 additions and 1 deletions

View File

@ -421,10 +421,11 @@ namespace kiwix {
}
} else {
for ( itr = library.books.begin(); itr != library.books.end(); ++itr ) {
if (!itr->path.empty())
if (!itr->path.empty()) {
this->bookIdList.push_back(itr->id);
}
}
}
return true;
}