forked from organicmaps/organicmaps
[new downloader] Group node status fix.
This commit is contained in:
parent
fa0fb882e4
commit
61b6b5b639
1 changed files with 4 additions and 0 deletions
|
@ -1257,12 +1257,16 @@ Status Storage::NodeStatus(TCountriesContainer const & node) const
|
|||
return;
|
||||
}
|
||||
|
||||
if (result == kUsersAttentionNeeded)
|
||||
return;
|
||||
if (IsUserAttentionNeededStatus(status))
|
||||
{
|
||||
result = kUsersAttentionNeeded;
|
||||
return;
|
||||
}
|
||||
|
||||
if (result == kPartlyDownloaded)
|
||||
return;
|
||||
if (IsPartlyDownloaded(status))
|
||||
result = kPartlyDownloaded;
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue