+2005-06-24 Helge Hess <helge.hess@opengroupware.org>
+
+ * UIxMailPartLinkViewer.m: fixed an exception on Cocoa when a mail is
+ composed from just the HTML body (v0.9.4)
+
2005-02-21 Helge Hess <helge.hess@opengroupware.org>
* prepared HTML and iCal mail part viewers (0.9.3)
/* mail relative path to body-part */
- n = [[self partPath] componentsJoinedByString:@"/"];
- url = [url stringByAppendingString:n];
+ if ([(n = [[self partPath] componentsJoinedByString:@"/"]) isNotNull]) {
+ /* eg this was nil for a draft containing an HTML message */
+ url = [url stringByAppendingString:n];
+ }
+
if ([pext isNotNull] && [pext length] > 0) {
/* attach extension */
url = [url stringByAppendingString:@"."];
# version file
-SUBMINOR_VERSION:=3
+SUBMINOR_VERSION:=4
# v0.9.1 requires libNGMime v4.5.213