forked from organicmaps/organicmaps
[iOS] Fixed 'Mobile network' alert in Downloader
https://jira.mail.ru/browse/MAPSME-12885
This commit is contained in:
parent
a6bd68cca9
commit
8510918108
1 changed files with 4 additions and 0 deletions
|
@ -26,6 +26,7 @@
|
|||
if (error.code == kStorageCellularForbidden) {
|
||||
__weak __typeof(self) ws = self;
|
||||
[[MWMAlertViewController activeAlertController] presentNoWiFiAlertWithOkBlock:^{
|
||||
[MWMStorage enableCellularDownload:YES];
|
||||
[ws downloadNode:countryId];
|
||||
} andCancelBlock:nil];
|
||||
} else {
|
||||
|
@ -49,6 +50,7 @@
|
|||
if (error.code == kStorageCellularForbidden) {
|
||||
__weak __typeof(self) ws = self;
|
||||
[[MWMAlertViewController activeAlertController] presentNoWiFiAlertWithOkBlock:^{
|
||||
[MWMStorage enableCellularDownload:YES];
|
||||
[ws updateNode:countryId onCancel:cancel];
|
||||
} andCancelBlock:cancel];
|
||||
} else {
|
||||
|
@ -71,6 +73,7 @@
|
|||
__weak __typeof(self) ws = self;
|
||||
if (error.code == kStorageCellularForbidden) {
|
||||
[[MWMAlertViewController activeAlertController] presentNoWiFiAlertWithOkBlock:^{
|
||||
[MWMStorage enableCellularDownload:YES];
|
||||
[ws deleteNode:countryId];
|
||||
} andCancelBlock:nil];
|
||||
} else if (error.code == kStorageHaveUnsavedEdits) {
|
||||
|
@ -90,6 +93,7 @@
|
|||
if (error.code == kStorageCellularForbidden) {
|
||||
__weak __typeof(self) ws = self;
|
||||
[[MWMAlertViewController activeAlertController] presentNoWiFiAlertWithOkBlock:^{
|
||||
[MWMStorage enableCellularDownload:YES];
|
||||
[ws downloadNodes:countryIds onSuccess:success];
|
||||
} andCancelBlock:nil];
|
||||
} else {
|
||||
|
|
Loading…
Add table
Reference in a new issue