Small fix (unused code)

pull/185/head
M66B 4 years ago
parent cc48b5ad69
commit 9d54d89782

@ -1121,12 +1121,11 @@ 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))
return host;
int s = origin.indexOf('[');
int e = origin.indexOf(']');
if (s > 0 && e > s + 1)
host = origin.substring(s + 1, e);
return host;
}
return null;

Loading…
Cancel
Save