Fixed crash when an upload is confirmed with no file selected

This commit is contained in:
David A. Velasco 2013-01-08 17:48:58 +01:00
parent 6faa03a084
commit a1a31b68d9

View file

@ -314,7 +314,7 @@ public class UploadFilesActivity extends SherlockFragmentActivity implements
protected Boolean doInBackground(Void... params) {
String[] checkedFilePaths = mFileListFragment.getCheckedFilePaths();
long total = 0;
for (int i=0; i < checkedFilePaths.length ; i++) {
for (int i=0; checkedFilePaths != null && i < checkedFilePaths.length ; i++) {
String localPath = checkedFilePaths[i];
File localFile = new File(localPath);
total += localFile.length();