forked from organicmaps/organicmaps-tmp
[android] Additional check to avoid crash on download canceling
This commit is contained in:
parent
c380bce6b1
commit
d136af0b5f
2 changed files with 6 additions and 4 deletions
|
@ -3,7 +3,6 @@ package com.mapswithme.maps;
|
|||
import android.app.AlertDialog;
|
||||
import android.content.DialogInterface;
|
||||
import android.os.Bundle;
|
||||
import android.preference.CheckBoxPreference;
|
||||
import android.preference.Preference;
|
||||
import android.preference.PreferenceActivity;
|
||||
import android.preference.PreferenceScreen;
|
||||
|
|
|
@ -62,9 +62,12 @@ class DownloadChunkTask extends AsyncTask<Void, byte [], Void>
|
|||
@Override
|
||||
protected void onProgressUpdate(byte []... data)
|
||||
{
|
||||
// Use progress event to save downloaded bytes
|
||||
onWrite(m_httpCallbackID, m_beg + m_downloadedBytes, data[0], (long)data[0].length);
|
||||
m_downloadedBytes += data[0].length;
|
||||
if (!isCancelled())
|
||||
{
|
||||
// Use progress event to save downloaded bytes
|
||||
onWrite(m_httpCallbackID, m_beg + m_downloadedBytes, data[0], (long)data[0].length);
|
||||
m_downloadedBytes += data[0].length;
|
||||
}
|
||||
}
|
||||
|
||||
void start()
|
||||
|
|
Loading…
Add table
Reference in a new issue