Skip to content

Commit

Permalink
xamarin#1059 a photoOutput != null check taken off. This check was in…
Browse files Browse the repository at this point in the history
…troduced in the commit f44fb4e and now no photos can be taken under iOS.
  • Loading branch information
Janis Paraschidis committed Mar 11, 2021
1 parent caa3ebc commit 0cefa07
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ public float Zoom

public async Task TakePhoto()
{
if (isBusy || device == null || photoOutput != null)
if (isBusy || device == null)
return;

IsBusy = true;
Expand Down

0 comments on commit 0cefa07

Please sign in to comment.