Skip to content

Commit

Permalink
Update README.md (#91)
Browse files Browse the repository at this point in the history
Invert bool condition when checking photo support
  • Loading branch information
catchertinator authored Jan 25, 2022
1 parent 9c1fff2 commit f8e70a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ When picking files on iPadOS you have the ability to present in a pop over contr

```csharp
//...
if (MediaGallery.CheckCapturePhotoSupport())
if (!MediaGallery.CheckCapturePhotoSupport())
return;

var status = await Permissions.RequestAsync<Permissions.Camera>();
Expand Down

0 comments on commit f8e70a7

Please sign in to comment.