mirror of https://github.com/M66B/FairEmail.git
Prevent flowing Usenet signature
This commit is contained in:
parent
520de28916
commit
6b5c515bfb
|
@ -595,7 +595,7 @@ public class MessageHelper {
|
|||
if (format_flowed) {
|
||||
List<String> flowed = new ArrayList<>();
|
||||
for (String line : plainContent.split("\\r?\\n")) {
|
||||
if (line.contains(" ")) {
|
||||
if (line.contains(" ") && !"-- ".equals(line)) {
|
||||
StringBuffer sb = new StringBuffer();
|
||||
for (String word : line.split(" ")) {
|
||||
if (sb.length() + word.length() > FORMAT_FLOWED_LINE_LENGTH) {
|
||||
|
|
Loading…
Reference in New Issue