Fix NullPointerException on MutableImage when taking a picture (#816)

This commit is contained in:
Max Findel
2017-08-01 06:26:56 -07:00
committed by Zack Story
parent 97d5d7988a
commit 1135c53f7f
@@ -598,7 +598,7 @@ public class RCTCameraModule extends ReactContextBaseJavaModule
try {
mutableImage.writeDataToFile(cameraRollFile, options, jpegQualityPercent);
} catch (IOException e) {
} catch (IOException | NullPointerException e) {
promise.reject("failed to save image file", e);
return;
}