workaround for NullPointerException for some document thumbnails
This commit is contained in:
@@ -220,7 +220,7 @@ public class FileHelper {
|
|||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
|
||||||
try {
|
try {
|
||||||
return DocumentsContract.getDocumentThumbnail(context.getContentResolver(), uri, size, null);
|
return DocumentsContract.getDocumentThumbnail(context.getContentResolver(), uri, size, null);
|
||||||
} catch (FileNotFoundException e) {
|
} catch (Exception e) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Reference in New Issue
Block a user