set the preferred body type for meeting response

pull/85/head
Ludovic Marcotte 2015-05-12 10:15:07 -04:00
parent 2c78d60e4a
commit 364a07bd05
1 changed files with 4 additions and 1 deletions

View File

@ -846,7 +846,10 @@ struct GlobalObjectId {
if (preferredBodyType == 1 && nativeBodyType == 2)
d = [[[p getBody] htmlToText] dataUsingEncoding: NSUTF8StringEncoding];
else
d = [[p getBody] dataUsingEncoding: NSUTF8StringEncoding];
{
preferredBodyType = 2;
d = [[p getBody] dataUsingEncoding: NSUTF8StringEncoding];
}
}