(fix) correctly encode filename of attachments over EAS (#3491)

This commit is contained in:
Ludovic Marcotte
2016-02-04 10:34:55 -05:00
parent a8845d262f
commit c12200c7b5
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -1414,7 +1414,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
[s appendString: @"<Fetch>"];
[s appendString: @"<Status>1</Status>"];
[s appendFormat: @"<FileReference xmlns=\"AirSyncBase:\">%@</FileReference>", [fileReference stringByEscapingURL]];
[s appendFormat: @"<FileReference xmlns=\"AirSyncBase:\">%@</FileReference>", fileReference];
[s appendString: @"<Properties>"];
[s appendFormat: @"<ContentType xmlns=\"AirSyncBase:\">%@/%@</ContentType>", [[currentBodyPart partInfo] objectForKey: @"type"], [[currentBodyPart partInfo] objectForKey: @"subtype"]];
+1
View File
@@ -10,6 +10,7 @@ Bug fixes
- 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
- correctly encode filename of attachments over EAS (#3491)
3.0.0 (2016-01-27)
------------------