1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-01-01 04:35:57 +00:00

Refactoring

This commit is contained in:
M66B 2021-12-08 22:56:39 +01:00
parent 394134c1e5
commit 62999c1521

View file

@ -281,7 +281,6 @@ public class EntityRule {
if (!keywords.contains(keyword))
return false;
} else {
boolean matches = false;
if (headers == null) {
if (message.headers == null)
throw new IllegalArgumentException(context.getString(R.string.title_rule_no_headers));
@ -289,6 +288,8 @@ public class EntityRule {
ByteArrayInputStream bis = new ByteArrayInputStream(message.headers.getBytes());
headers = Collections.list(new InternetHeaders(bis).getAllHeaders());
}
boolean matches = false;
for (Header header : headers) {
String formatted = header.getName() + ": " + header.getValue();
if (matches(context, message, value, formatted, regex)) {