Browse Source

utils: Verify that context is not Null before calling context.getResources().

ardevd 7 years ago
parent
commit
9aa4c254ed
1 changed files with 10 additions and 6 deletions
  1. 10 6
      src/main/java/com/owncloud/android/utils/MimeTypeUtil.java

+ 10 - 6
src/main/java/com/owncloud/android/utils/MimeTypeUtil.java

@@ -94,14 +94,18 @@ public class MimeTypeUtil {
      * @return Drawable of an image resource.
      */
     public static Drawable getFileTypeIcon(String mimetype, String filename, Account account, Context context) {
-        int iconId = MimeTypeUtil.getFileTypeIconId(mimetype, filename);
-        Drawable icon = context.getResources().getDrawable(iconId);
+        if (context != null) {
+            int iconId = MimeTypeUtil.getFileTypeIconId(mimetype, filename);
+            Drawable icon = context.getResources().getDrawable(iconId);
 
-        if(R.drawable.file_zip == iconId) {
-            ThemeUtils.tintDrawable(icon, ThemeUtils.primaryColor(account, context));
-        }
+            if (R.drawable.file_zip == iconId) {
+                ThemeUtils.tintDrawable(icon, ThemeUtils.primaryColor(account, context));
+            }
 
-        return icon;
+            return icon;
+        } else {
+            return null;
+        }
     }
 
     /**