From 8f43bcc954137d760c17d4caa5a7c5814ee0960d Mon Sep 17 00:00:00 2001 From: kelson42 Date: Sun, 18 Sep 2011 14:13:19 +0000 Subject: [PATCH] * Fixing a bug responsible of masking ongoing downloads while deleting an other content --- src/common/kiwix/manager.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/common/kiwix/manager.cpp b/src/common/kiwix/manager.cpp index 8d5f192e..b0f642df 100644 --- a/src/common/kiwix/manager.cpp +++ b/src/common/kiwix/manager.cpp @@ -421,8 +421,9 @@ 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); + } } }