2005-07-19 Helge Hess <helge.hess@opengroupware.org>
+ * UIxMailEditor.m: do not complain on drafts not being found when the
+ delete action is triggered (#1489) (v0.9.154)
+
* UIxMailAccountView.m: directly check the ACL of the Inbox to check
permissions (the Inbox will return NO on isCreateAllowed when being
used by altnamespace ...) (#1472) (v0.9.153)
NSException *error;
id page;
- if ((error = [[self clientObject] delete]) != nil)
- return error;
+ if ((error = [[self clientObject] delete]) != nil) {
+ /* Note: we ignore 404: those are drafts which were not yet saved */
+ if (![error httpStatus] == 404)
+ return error;
+ }
#if 1
page = [self pageWithName:@"UIxMailWindowCloser"];
# version file
-SUBMINOR_VERSION:=152
+SUBMINOR_VERSION:=154
# v0.9.140 requires SoObjects/Mailer v0.9.100
# v0.9.134 requires libSOGo v0.9.41