1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-12-23 08:18:52 -05:00

ISO-8859-8-I is not supported, but ISO-8859-8 uses the same code points so we can use that instead

This commit is contained in:
Reinhard Pointner 2017-03-31 18:09:04 +08:00
parent 6145508272
commit 758bd7f817

View File

@ -246,12 +246,19 @@ public final class FileUtilities {
CharsetMatch match = detector.detect(); CharsetMatch match = detector.detect();
if (match != null) { if (match != null) {
Reader reader = match.getReader(); Reader reader = match.getReader();
// reader may be null if detected character encoding is not supported
if (reader != null) { if (reader != null) {
return reader; return reader;
} }
// reader may be null if detected character encoding is not supported // ISO-8859-8-I is not supported, but ISO-8859-8 uses the same code points so we can use that instead
debug.warning("Unsupported charset: " + match.getName()); switch (match.getName()) {
case "ISO-8859-8-I":
return new InputStreamReader(in, Charset.forName("ISO-8859-8"));
default:
debug.warning("Unsupported charset: " + match.getName());
}
} }
} }