forked from organicmaps/organicmaps
Raise error if no space left on device
This commit is contained in:
parent
4e879b28da
commit
06e7b8cd9b
1 changed files with 5 additions and 1 deletions
|
@ -188,7 +188,11 @@ static id<DownloadIndicatorProtocol> downloadIndicator = nil;
|
|||
UNUSED_VALUE(connection);
|
||||
int64_t const length = [data length];
|
||||
m_downloadedBytes += length;
|
||||
m_callback->OnWrite(m_begRange + m_downloadedBytes - length, [data bytes], length);
|
||||
if(!m_callback->OnWrite(m_begRange + m_downloadedBytes - length, [data bytes], length))
|
||||
{
|
||||
[m_connection cancel];
|
||||
m_callback->OnFinish(-1, m_begRange, m_endRange);
|
||||
}
|
||||
}
|
||||
|
||||
- (void) connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
|
||||
|
|
Loading…
Add table
Reference in a new issue