forked from organicmaps/organicmaps
[iOS] Added assert to break on invalid urls.
Signed-off-by: vng <viktor.govako@gmail.com>
This commit is contained in:
parent
2d8eb42f74
commit
9129844746
1 changed files with 1 additions and 0 deletions
|
@ -121,6 +121,7 @@ void BackgroundDownloaderAdapter::DownloadFromAnyUrl(CountryId const & countryId
|
|||
};
|
||||
|
||||
NSURL * url = [NSURL URLWithString:@(urls.back().c_str())];
|
||||
assert(url != nil);
|
||||
BackgroundDownloader * downloader = [BackgroundDownloader sharedBackgroundMapDownloader];
|
||||
NSUInteger taskId = [downloader downloadWithUrl:url completion:onFinish progress:onProgress];
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue