mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-08-19 13:43:22 +00:00
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:
@@ -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.
|
||||
|
||||
@@ -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++)
|
||||
|
||||
Reference in New Issue
Block a user