Skip to content

Commit

Permalink
fix(mail): Fix ukrainian encoding issue. Fixes #5702.
Browse files Browse the repository at this point in the history
  • Loading branch information
WoodySlum committed Feb 26, 2024
2 parents 09a97b1 + 5710c4d commit 776a798
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions UI/MailPartViewers/UIxMailPartHTMLViewer.m
Expand Up @@ -79,6 +79,7 @@
{ @"iso-2022-jp", XML_CHAR_ENCODING_2022_JP},
// { @"iso-2022-jp", XML_CHAR_ENCODING_SHIFT_JIS},
{ @"koi8-r", XML_CHAR_ENCODING_ERROR}, // unsupported, will trigger koi8-r -> utf8 conversion
{ @"koi8-u", XML_CHAR_ENCODING_ERROR}, // unsupported, will trigger koi8-u -> utf8 conversion
{ @"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
Expand Down

0 comments on commit 776a798

Please sign in to comment.