Merge "Change caught exception in MediaScanner when ExifInterface is created"

am: 0915931939

Change-Id: Id0bf1aae90b625e0eef5147c7c03f1b1e4341931
This commit is contained in:
Toshikazu Saito
2018-10-23 10:52:35 -07:00
committed by android-build-merger

View File

@@ -989,7 +989,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) {