فهرست منبع

Fixed bug. When there is a downloaded file which is not support as tiff, app crashes

jabarros 10 سال پیش
والد
کامیت
6c55a20389
1فایلهای تغییر یافته به همراه6 افزوده شده و 3 حذف شده
  1. 6 3
      src/com/owncloud/android/ui/adapter/FileListListAdapter.java

+ 6 - 3
src/com/owncloud/android/ui/adapter/FileListListAdapter.java

@@ -172,10 +172,13 @@ public class FileListListAdapter extends BaseAdapter implements ListAdapter {
                 
                 if (file.isDown()){
                     Bitmap bitmap = BitmapFactory.decodeFile(file.getStoragePath());
-                    thumbnail = ThumbnailUtils.extractThumbnail(bitmap, px, px);
                     
-                    // Add thumbnail to cache
-                    addBitmapToCache(imageKey, thumbnail);
+                    if (bitmap != null) {
+                        thumbnail = ThumbnailUtils.extractThumbnail(bitmap, px, px);
+
+                        // Add thumbnail to cache
+                        addBitmapToCache(imageKey, thumbnail);
+                    }
 
                 } else {
                     // Download thumbnail from server