mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-31 02:52:43 +00:00
(fix) IMIP accept/decline when there is only one MIME part
This commit is contained in:
1
NEWS
1
NEWS
@@ -8,6 +8,7 @@ Bug fixes
|
||||
- fixed blank calendar view when selecting "Descending Order" in the sort menu
|
||||
- show active user's default email address instead of system email address (#3473)
|
||||
- fixed display of HTML tags when viewing a message raw source (#3490)
|
||||
- fixed IMIP accept/decline when there is only one MIME part
|
||||
|
||||
3.0.0 (2016-01-27)
|
||||
------------------
|
||||
|
||||
@@ -334,7 +334,10 @@
|
||||
|
||||
bodyPart = [self clientPart];
|
||||
|
||||
return [NSString stringWithFormat: @"%@/%@", [bodyPart nameInContainer], [self _filenameForAttachment: bodyPart]];
|
||||
if ([bodyPart isKindOfClass: [SOGoMailBodyPart class]])
|
||||
return [NSString stringWithFormat: @"%@/%@", [bodyPart nameInContainer], [self _filenameForAttachment: bodyPart]];
|
||||
|
||||
return @"0";
|
||||
}
|
||||
|
||||
- (NSString *) pathToAttachment
|
||||
|
||||
Reference in New Issue
Block a user