Monotone-Parent: 4b26b52413afe9c0e02b06099d1261720125fdca

Monotone-Revision: 0d9f18d50e83859175eb80a24a1db2cb24a748e2

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-11-08T21:57:30
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2007-11-08 21:57:30 +00:00
parent 71db9eca36
commit 8bd2711c37
2 changed files with 7 additions and 1 deletions
+6
View File
@@ -1,5 +1,11 @@
2007-11-08 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/MailPartViewers/UIxMailPartHTMLViewer.m
([UIxMailPartHTMLViewer -_attachmentIds]): the reference was one
character too short, which cause the images not to be displayed
sometimes and crashes to happen whenever the references on a
message were wrong (due to bugs in SOPE).
* UI/MailerUI/UIxMailListView.m ([UIxMailListView
-hasMessageAttachment]): consider an attachment any content that
has a non-nil disposition.
+1 -1
View File
@@ -449,7 +449,7 @@
url = [NSMutableString new];
[url appendString: baseURL];
[url appendFormat: @"/%@", [partPath componentsJoinedByString: @"/"]];
[url deleteCharactersInRange: NSMakeRange([url length] - 3, 2)];
[url deleteCharactersInRange: NSMakeRange([url length] - 2, 2)];
parts = [[parent bodyInfo] objectForKey: @"parts"];
max = [parts count];
for (count = 0; count < max; count++)