Merge pull request #2495 from jekor/master

workaround for NullPointerException for some document thumbnails
This commit is contained in:
Dominik Schürmann
2019-10-22 16:22:29 +02:00
committed by GitHub

View File

@@ -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 {