Merge "Change caught exception in MediaScanner when ExifInterface is created" am: 0915931939 am: 544c774381

am: 92ccb271ce

Change-Id: If5c4f35573d0c73bf412b22406d04e70fba1f17c
This commit is contained in:
Toshikazu Saito
2018-10-25 18:41:28 -07:00
committed by android-build-merger

View File

@@ -986,7 +986,7 @@ public class MediaScanner implements AutoCloseable {
ExifInterface exif = null;
try {
exif = new ExifInterface(entry.mPath);
} catch (IOException ex) {
} catch (Exception ex) {
// exif is null
}
if (exif != null) {