diff --git a/storage/storage.cpp b/storage/storage.cpp index efb7a20d56..78ad8c268d 100644 --- a/storage/storage.cpp +++ b/storage/storage.cpp @@ -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; };