diff --git a/camera/camera.ios.ts b/camera/camera.ios.ts index cf0a0c35d..54d30d5b8 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.ios, nil, nil, nil); + UIImageWriteToSavedPhotosAlbum(imageSourceResult.ios, null, null, null); } } }