Small improvement

This commit is contained in:
M66B 2020-10-22 08:39:33 +02:00
parent 108e93aa48
commit c904fa05e2
1 changed files with 5 additions and 0 deletions

View File

@ -19,6 +19,8 @@ package eu.faircode.email;
Copyright 2018-2020 by Marcel Bokhorst (M66B) Copyright 2018-2020 by Marcel Bokhorst (M66B)
*/ */
import android.text.TextUtils;
import java.nio.charset.Charset; import java.nio.charset.Charset;
import java.nio.charset.StandardCharsets; import java.nio.charset.StandardCharsets;
@ -85,6 +87,9 @@ class CharsetHelper {
// ISO-2022-JP, ISO-8859-2, windows-1250, windows-1252, windows-1257 // ISO-2022-JP, ISO-8859-2, windows-1250, windows-1252, windows-1257
Log.e("compact_enc_det result=" + detected); Log.e("compact_enc_det result=" + detected);
if (TextUtils.isEmpty(detected))
return null;
return Charset.forName(detected); return Charset.forName(detected);
} catch (Throwable ex) { } catch (Throwable ex) {
Log.w(ex); Log.w(ex);