Enable Unicode

This commit is contained in:
M66B
2022-08-13 14:03:41 +02:00
parent a9e452aaab
commit 8c010244e6
8 changed files with 17 additions and 17 deletions

View File

@@ -330,7 +330,7 @@ public class EntityRule {
throw new IllegalArgumentException(context.getString(R.string.title_rule_no_headers));
ByteArrayInputStream bis = new ByteArrayInputStream(message.headers.getBytes());
headers = Collections.list(new InternetHeaders(bis).getAllHeaders());
headers = Collections.list(new InternetHeaders(bis, true).getAllHeaders());
}
boolean matches = false;