mirror of https://github.com/M66B/FairEmail.git
Small fix (unused code)
This commit is contained in:
parent
cc48b5ad69
commit
9d54d89782
|
@ -1121,11 +1121,10 @@ public class MessageHelper {
|
|||
String[] h = origin.split("\\s+");
|
||||
if (h.length > 1 && h[0].equalsIgnoreCase("from")) {
|
||||
String host = h[1];
|
||||
if (host.startsWith("["))
|
||||
host = host.substring(1);
|
||||
if (host.endsWith("]"))
|
||||
host = host.substring(0, host.length() - 1);
|
||||
if (!TextUtils.isEmpty(host))
|
||||
int s = origin.indexOf('[');
|
||||
int e = origin.indexOf(']');
|
||||
if (s > 0 && e > s + 1)
|
||||
host = origin.substring(s + 1, e);
|
||||
return host;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue