fix(android): Improper serialization of image uri in save instance state (#903)

This commit is contained in:
Norman Breau 2024-10-25 13:59:29 -03:00 committed by GitHub
parent 36bf8e7331
commit 16325102c7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1378,7 +1378,7 @@ public class CameraLauncher extends CordovaPlugin implements MediaScannerConnect
}
if (this.imageUri != null) {
state.putString(IMAGE_URI_KEY, this.imageFilePath);
state.putString(IMAGE_URI_KEY, this.imageUri.toString());
}
if (this.imageFilePath != null) {