mirror of
https://github.com/status-im/react-native-camera.git
synced 2026-08-31 13:41:08 +00:00
Fix NullPointerException on MutableImage when taking a picture (#816)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user