Skip to content

Commit

Permalink
Fixes in-app camera behaviour (#5302)
Browse files Browse the repository at this point in the history
  • Loading branch information
srishti-R authored Sep 25, 2023
1 parent ff7fa79 commit 2fc8527
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public UploadableFile(Uri contentUri, File file) {

public UploadableFile(File file) {
this.file = file;
this.contentUri = Uri.parse(file.getAbsolutePath());
this.contentUri = Uri.fromFile(new File(file.getPath()));
}

public UploadableFile(Parcel in) {
Expand Down

0 comments on commit 2fc8527

Please sign in to comment.