Skip to content

Commit

Permalink
fix(camera): process picked image only once (#782)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcesarmobile committed Jan 26, 2022
1 parent 87ed912 commit 897dcaf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ public void processPickedImages(PluginCall call, ActivityResult result) {
call.reject(processResult.getString("error"));
return;
} else {
photos.put(processPickedImages(imageUri));
photos.put(processResult);
}
}
ret.put("photos", photos);
Expand Down

0 comments on commit 897dcaf

Please sign in to comment.