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

am: 544c774381

Change-Id: Ie3c04473e274b49b6c4bb7cb40f4d675453efd5c
This commit is contained in:
Toshikazu Saito
2018-10-24 15:58:40 -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) {