[storage] review fixes

This commit is contained in:
Arsentiy Milchakov 2017-11-01 17:25:08 +03:00 committed by r.kuznetsov
parent 9002e1c3dc
commit 820487db2f
2 changed files with 3 additions and 0 deletions

View file

@ -1454,6 +1454,7 @@ void Storage::OnDiffStatusReceived(diffs::Status const status)
if (!isSuccess)
{
m_failedCountries.insert(countryId);
NotifyStatusChangedForHierarchy(countryId);
return;
}

View file

@ -662,6 +662,8 @@ private:
void LoadDiffScheme();
void ApplyDiff(TCountryId const & countryId, function<void(bool isSuccess)> const & fn);
// Should be called once on startup, downloading process should be suspended until this method
// was not called. Do not call this method manually.
void OnDiffStatusReceived(diffs::Status const status) override;
};