From 3120bf06834a5b632b6940f41d28cb5e19acbdcd Mon Sep 17 00:00:00 2001 From: victorsosa Date: Fri, 6 May 2016 17:08:34 -0400 Subject: [PATCH] Added save to gallery option - IOS only --- camera/camera.ios.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/camera/camera.ios.ts b/camera/camera.ios.ts index d507b00b3..cf0a0c35d 100644 --- a/camera/camera.ios.ts +++ b/camera/camera.ios.ts @@ -62,7 +62,7 @@ class UIImagePickerControllerDelegateImpl extends NSObject implements UIImagePic if (this._callback) { this._callback(imageSourceResult); if(this._saveToGallery) { - UIImageWriteToSavedPhotosAlbum(imageSourceResult, nil, nil, nil); + UIImageWriteToSavedPhotosAlbum(imageSourceResult.ios, nil, nil, nil); } } }