mirror of https://github.com/M66B/FairEmail.git
Small improvement
This commit is contained in:
parent
108e93aa48
commit
c904fa05e2
|
@ -19,6 +19,8 @@ package eu.faircode.email;
|
|||
Copyright 2018-2020 by Marcel Bokhorst (M66B)
|
||||
*/
|
||||
|
||||
import android.text.TextUtils;
|
||||
|
||||
import java.nio.charset.Charset;
|
||||
import java.nio.charset.StandardCharsets;
|
||||
|
||||
|
@ -85,6 +87,9 @@ class CharsetHelper {
|
|||
// ISO-2022-JP, ISO-8859-2, windows-1250, windows-1252, windows-1257
|
||||
Log.e("compact_enc_det result=" + detected);
|
||||
|
||||
if (TextUtils.isEmpty(detected))
|
||||
return null;
|
||||
|
||||
return Charset.forName(detected);
|
||||
} catch (Throwable ex) {
|
||||
Log.w(ex);
|
||||
|
|
Loading…
Reference in New Issue