diff --git a/storage/diff_scheme/diff_manager.cpp b/storage/diff_scheme/diff_manager.cpp index 9f4e78cf46..797719a01b 100644 --- a/storage/diff_scheme/diff_manager.cpp +++ b/storage/diff_scheme/diff_manager.cpp @@ -173,6 +173,12 @@ void Manager::RemoveAppliedDiffs() m_status = Status::NotAvailable; } +void Manager::RemoveDiffForCountry(storage::CountryId const & countryId) +{ + std::lock_guard lock(m_mutex); + m_diffs.erase(countryId); +} + void Manager::AbortDiffScheme() { std::lock_guard lock(m_mutex); diff --git a/storage/diff_scheme/diff_manager.hpp b/storage/diff_scheme/diff_manager.hpp index 407b251c35..fbe075695d 100644 --- a/storage/diff_scheme/diff_manager.hpp +++ b/storage/diff_scheme/diff_manager.hpp @@ -61,6 +61,7 @@ public: bool HasDiffFor(storage::CountryId const & countryId) const; void RemoveAppliedDiffs(); + void RemoveDiffForCountry(storage::CountryId const & countryId); void AbortDiffScheme(); Status GetStatus() const; diff --git a/storage/storage.cpp b/storage/storage.cpp index 061515df24..04dd45b419 100644 --- a/storage/storage.cpp +++ b/storage/storage.cpp @@ -571,6 +571,8 @@ void Storage::DeleteCountry(CountryId const & countryId, MapOptions opt) bool const deferredDelete = m_willDelete(countryId, localFile); DeleteCountryFiles(countryId, opt, deferredDelete); DeleteCountryFilesFromDownloader(countryId); + m_diffManager.RemoveDiffForCountry(countryId); + NotifyStatusChangedForHierarchy(countryId); }