Skip to content

Commit

Permalink
[downloader] Consider failed mwm as downloaded.
Browse files Browse the repository at this point in the history
  • Loading branch information
igrechuhin authored and bykoianko committed Jun 23, 2016
1 parent 0d713d9 commit 880c877
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage/storage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1198,7 +1198,7 @@ void Storage::GetChildrenInGroups(TCountryId const & parent,
for (auto const & disputed : disputedTerritoriesAndStatus)
allDisputedTerritories.push_back(disputed.first);

if (childStatus.status == NodeStatus::NotDownloaded || childStatus.status == NodeStatus::Error)
if (childStatus.status == NodeStatus::NotDownloaded)
{
availChildren.push_back(childValue);
for (auto const & disputed : disputedTerritoriesAndStatus)
Expand Down

0 comments on commit 880c877

Please sign in to comment.