(fix) Keep remote images when composing a HTML msg

pull/240/head
Francis Lachapelle 2018-01-24 15:58:45 -05:00
parent e93727d3f0
commit f88b46c78f
1 changed files with 4 additions and 1 deletions

View File

@ -262,6 +262,7 @@
attributes: (id <SaxAttributes>) attributes attributes: (id <SaxAttributes>) attributes
{ {
NSString *tagName; NSString *tagName;
BOOL appendElement = YES;
showWhoWeAre(); showWhoWeAre();
@ -381,9 +382,11 @@
} }
[result appendString: @"/>"]; [result appendString: @"/>"];
appendElement = NO;
} }
} }
else if (voidTags) if (appendElement && voidTags)
{ {
NSString *type; NSString *type;
int i; int i;