Skip to content

Commit

Permalink
(fix) properly handle Windows-1256 charaset (fixes #4781)
Browse files Browse the repository at this point in the history
  • Loading branch information
extrafu committed Aug 1, 2019
1 parent f55f629 commit 849c343
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions NEWS
@@ -1,3 +1,9 @@
4.0.9 (2019-XX-XX)
------------------

Bug fixes
- [web] properly handle Windows-1256 charaset (#4781)

4.0.8 (2019-07-19)
------------------

Expand Down
1 change: 1 addition & 0 deletions UI/MailPartViewers/UIxMailPartHTMLViewer.m
Expand Up @@ -82,6 +82,7 @@
{ @"windows-1250", XML_CHAR_ENCODING_ERROR}, // unsupported, will trigger windows-1250 -> utf8 conversion
{ @"windows-1251", XML_CHAR_ENCODING_ERROR}, // unsupported, will trigger windows-1251 -> utf8 conversion
{ @"windows-1255", XML_CHAR_ENCODING_ERROR}, // unsupported, will trigger windows-1255 -> utf8 conversion
{ @"windows-1256", XML_CHAR_ENCODING_ERROR}, // unsupported, will trigger windows-1255 -> utf8 conversion
{ @"windows-1257", XML_CHAR_ENCODING_ERROR}, // unsupported, will trigger windows-1257 -> utf8 conversion
{ @"gb2312", XML_CHAR_ENCODING_ERROR}, // unsupported, will trigger gb2312 -> utf8 conversion
{ @"gbk", XML_CHAR_ENCODING_ERROR}, // unsupported, will trigger gb2312 -> utf8 conversion
Expand Down

0 comments on commit 849c343

Please sign in to comment.