Skip to content

Commit

Permalink
fix(android): Improper serialization of image uri in save instance st…
Browse files Browse the repository at this point in the history
…ate (#903)
  • Loading branch information
breautek authored Oct 25, 2024
1 parent 36bf8e7 commit 1632510
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/android/CameraLauncher.java
Original file line number Diff line number Diff line change
Expand Up @@ -1378,7 +1378,7 @@ public Bundle onSaveInstanceState() {
}

if (this.imageUri != null) {
state.putString(IMAGE_URI_KEY, this.imageFilePath);
state.putString(IMAGE_URI_KEY, this.imageUri.toString());
}

if (this.imageFilePath != null) {
Expand Down

0 comments on commit 1632510

Please sign in to comment.