[iOS] Fixed duplicate banner creation in downloader screen

https://jira.mail.ru/browse/MAPSME-15224
This commit is contained in:
Alexander Boriskov 2020-12-02 17:07:10 +03:00 committed by Alexander Boriskov
parent b9c04ba3e3
commit 30044eb60c

View file

@ -99,7 +99,6 @@ using namespace storage;
}
- (void)configDialog {
[self removePreviousBunnerIfNeeded];
auto &f = GetFramework();
auto const &s = f.GetStorage();
auto const &p = f.GetDownloadingPolicy();
@ -126,6 +125,7 @@ using namespace storage;
switch (nodeAttrs.m_status) {
case NodeStatus::NotDownloaded:
case NodeStatus::Partly: {
[self removePreviousBunnerIfNeeded];
MapViewController *controller = self.controller;
BOOL const isMapVisible = [controller.navigationController.topViewController isEqual:controller];
if (isMapVisible && !self.isAutoDownloadCancelled && canAutoDownload(m_countryId)) {
@ -163,6 +163,7 @@ using namespace storage;
case NodeStatus::Undefined:
case NodeStatus::Error:
if (p.IsAutoRetryDownloadFailed()) {
[self removePreviousBunnerIfNeeded];
[self showError:nodeAttrs.m_error];
} else {
[self showInQueue];