You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
self.result?(FlutterError(code:"Photo must not be nil.", message:"The specified serialization did not include a photo.", details:nil))
86
+
self.result?(FlutterError(code:IMGLYConstants.kErrorUnableToLoad, message:"The specified serialization did not include a photo.", details:nil))
87
87
self.result =nil
88
88
returnnil
89
89
}
@@ -92,7 +92,7 @@ public class FlutterPESDK: FlutterIMGLY, FlutterPlugin, PhotoEditViewControllerD
92
92
}
93
93
94
94
guardlet finalPhoto = finalPhotoAsset else{
95
-
self.result?(FlutterError(code:"Photo must not be nil.", message:"No image has been specified or included in the serialization.", details:nil))
95
+
self.result?(FlutterError(code:IMGLYConstants.kErrorUnableToLoad, message:"No image has been specified or included in the serialization.", details:nil))
96
96
self.result =nil
97
97
returnnil
98
98
}
@@ -121,9 +121,11 @@ public class FlutterPESDK: FlutterIMGLY, FlutterPlugin, PhotoEditViewControllerD
121
121
DispatchQueue.main.async{
122
122
do{
123
123
tryPESDK.unlockWithLicense(from: url)
124
+
self.result?(nil)
124
125
self.result =nil
125
126
}catchlet error{
126
-
self.handleLicenseError(with: error asNSError)
127
+
self.result?(FlutterError(code:IMGLYConstants.kErrorUnableToUnlock, message:"Unlocking the SDK failed due to:", details: error.localizedDescription))
128
+
self.result =nil
127
129
}
128
130
}
129
131
}
@@ -153,7 +155,7 @@ extension FlutterPESDK {
153
155
/// - Parameter result: The `PhotoEditorResult` from the editor.
self.handleError(photoEditViewController, code:"Export type must not be nil.", message:"No valid export type has been specified.", details:self.exportFile?.absoluteString)
169
+
self.handleError(photoEditViewController, code:IMGLYConstants.kErrorUnableToExport, message:"No valid export type has been specified.", details:self.exportFile?.absoluteString)
self.handleError(photoEditViewController, code:"Image could not be saved.", message:"Error message: \(error.localizedDescription)", details: error.localizedDescription)
self.handleError(photoEditViewController, code:"Editor failed", message:"The editor did fail to generate the image.", details: error.localizedDescription)
228
+
self.handleError(photoEditViewController, code:IMGLYConstants.kErrorUnableToExport, message:"The editor did fail to generate the image.", details: error.localizedDescription)
227
229
}
228
230
229
231
/// Delegate function that is called if the `PhotoEditViewController` has
0 commit comments