Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

Commit

Permalink
Fixed typo in exception message
Browse files Browse the repository at this point in the history
Changed "Only one operation can be active at at time" to "Only one operation can be active at a time"
  • Loading branch information
HarkerTech authored Oct 7, 2018
1 parent 008574f commit f6570db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Media.Plugin/iOS/MediaImplementation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ private Task<MediaFile> GetMediaAsync(UIImagePickerControllerSourceType sourceTy
MediaPickerDelegate ndelegate = new MediaPickerDelegate(viewController, sourceType, options);
var od = Interlocked.CompareExchange(ref pickerDelegate, ndelegate, null);
if (od != null)
throw new InvalidOperationException("Only one operation can be active at at time");
throw new InvalidOperationException("Only one operation can be active at a time");

var picker = SetupController(ndelegate, sourceType, mediaType, options);

Expand Down

0 comments on commit f6570db

Please sign in to comment.