mirror of
https://github.com/status-im/react-native-cameraroll.git
synced 2025-02-19 21:18:20 +00:00
fix: fix for crash on putImageSize due to photoDescriptor being null. (#240)
fixes #226 #239
This commit is contained in:
parent
c99c28c9a4
commit
b6038a7f0f
@ -709,7 +709,6 @@ public class CameraRollModule extends ReactContextBaseJavaModule {
|
||||
width = options.outWidth;
|
||||
height = options.outHeight;
|
||||
}
|
||||
}
|
||||
|
||||
try {
|
||||
photoDescriptor.close();
|
||||
@ -718,6 +717,8 @@ public class CameraRollModule extends ReactContextBaseJavaModule {
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
image.putInt("width", width);
|
||||
image.putInt("height", height);
|
||||
return success;
|
||||
|
Loading…
x
Reference in New Issue
Block a user