diff --git a/NEWS b/NEWS index 9545ad967..cb3b3f40c 100644 --- a/NEWS +++ b/NEWS @@ -18,6 +18,7 @@ Bug fixes - [web] fixed SAML2 session timeout handling during XHR requests - [web] fixed renaming a folder under iOS - [web] fixed download of exported folders under iOS + - [web] improved server-side CSS sanitizer - [eas] improved alarms syncing with EAS devices (#4351) - [eas] avoid potential cache update when breaking sync queries (#4422) - [eas] fixed EAS search diff --git a/UI/MailPartViewers/UIxMailPartHTMLViewer.m b/UI/MailPartViewers/UIxMailPartHTMLViewer.m index 4c10338af..296a03441 100644 --- a/UI/MailPartViewers/UIxMailPartHTMLViewer.m +++ b/UI/MailPartViewers/UIxMailPartHTMLViewer.m @@ -623,7 +623,9 @@ _xmlCharsetForCharset (NSString *charset) { if ([lowerName isEqualToString: @"body"]) { - inBody = NO; + // Assume never ends to properly display incorrectly constructed messages. + // See bug #4492 + // inBody = NO; if (css) [self _finishCSS]; }