Skip to content

Commit

Permalink
Fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
mvanbeusekom committed Mar 4, 2021
1 parent 4a4c082 commit 25cff82
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public void onImageAvailable(ImageReader reader) {
// Use acquireNextImage since our image reader is only for 1 image.
mBackgroundHandler.post(
new ImageSaver(
reader.acquireNextImage(), pictureCaptureRequest.mFile, pictureCaptureRequest));
reader.acquireNextImage(), pictureCaptureRequest.file, pictureCaptureRequest));
cameraState = CameraState.STATE_PREVIEW;
}
};
Expand Down

0 comments on commit 25cff82

Please sign in to comment.