mirror of
https://github.com/moparisthebest/k-9
synced 2025-01-30 23:00:09 -05:00
Move KOI8-U -> KOI8-R fixup to charset fall-back table
This commit is contained in:
parent
4b42d0e062
commit
0319ee4a5d
@ -912,6 +912,8 @@ public class MimeUtility {
|
||||
* Table format: unsupported charset (regular expression), fall-back charset
|
||||
*/
|
||||
private static final String[][] CHARSET_FALLBACK_MAP = new String[][] {
|
||||
// Some Android versions don't support KOI8-U
|
||||
{"koi8-u", "koi8-r"},
|
||||
{"iso-2022-jp-[\\d]+", "iso-2022-jp"},
|
||||
// Default fall-back is US-ASCII
|
||||
{".*", "US-ASCII"}
|
||||
@ -2185,8 +2187,6 @@ public class MimeUtility {
|
||||
charset = charset.toLowerCase(Locale.US);
|
||||
if (charset.equals("cp932"))
|
||||
charset = "shift_jis";
|
||||
else if (charset.equals("koi8-u"))
|
||||
charset = "koi8-r";
|
||||
|
||||
if (charset.equals("shift_jis") || charset.equals("iso-2022-jp")) {
|
||||
String variant = getJisVariantFromMessage(message);
|
||||
|
Loading…
Reference in New Issue
Block a user