mirror of https://github.com/kiwix/libkiwix.git
* Fixing a bug responsible of masking ongoing downloads while deleting an other content
This commit is contained in:
parent
cf07bf827b
commit
8f43bcc954
|
@ -421,10 +421,11 @@ namespace kiwix {
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
for ( itr = library.books.begin(); itr != library.books.end(); ++itr ) {
|
for ( itr = library.books.begin(); itr != library.books.end(); ++itr ) {
|
||||||
if (!itr->path.empty())
|
if (!itr->path.empty()) {
|
||||||
this->bookIdList.push_back(itr->id);
|
this->bookIdList.push_back(itr->id);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue