[android] Additional check to avoid crash on download canceling

This commit is contained in:
Alex Zolotarev 2011-12-19 19:22:50 +03:00 committed by Alex Zolotarev
parent c380bce6b1
commit d136af0b5f
2 changed files with 6 additions and 4 deletions

View file

@ -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;

View file

@ -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()