| 2099 | } |
| 2100 | |
| 2101 | void Storage::RetryDownloadNode(CountryId const & countryId) |
| 2102 | { |
| 2103 | ForEachInSubtree(countryId, [this](CountryId const & descendantId, bool groupNode) |
| 2104 | { |
| 2105 | if (!groupNode && m_failedCountries.count(descendantId) != 0) |
| 2106 | { |
| 2107 | bool const isUpdateRequest = m_diffsDataSource->HasDiffFor(descendantId); |
| 2108 | DownloadNode(descendantId, isUpdateRequest); |
| 2109 | } |
| 2110 | }); |
| 2111 | } |
| 2112 | |
| 2113 | bool Storage::GetUpdateInfo(CountryId const & countryId, UpdateInfo & updateInfo) const |
| 2114 | { |
no test coverage detected