Bug 1071116 - totalBytes must be greater than 0 in DownloadManager.addCompletedDownload r=bnicholson

This commit is contained in:
Wes Johnston 2014-10-17 20:43:21 -04:00
Родитель 8246da0b44
Коммит 7c39f8edbd
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1835,7 +1835,7 @@ public class GeckoAppShell
true, // Media scanner should scan this
mimeType,
f.getAbsolutePath(),
Math.max(0, f.length()),
Math.max(1, f.length()), // Some versions of Android require downloads to be at least length 1
false); // Don't show a notification.
} else {
Context context = getContext();