aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/imap
diff options
context:
space:
mode:
authorGravatar Paul Young <paulyoungonline@gmail.com>2013-07-02 23:05:48 -0400
committerGravatar Paul Young <paulyoungonline@gmail.com>2013-07-02 23:05:48 -0400
commit8c60a169f3f3a121b5e3aa45782d9c9fb76ebf17 (patch)
treea988644a4c88c09d99a1c62d4232ebf3389ad226 /src/core/imap
parentd6bce36a46e4d7434e9e920cbef5dbdd9a1fa1f8 (diff)
Replacing double spaces with a single space.
Diffstat (limited to 'src/core/imap')
-rw-r--r--src/core/imap/MCIMAPSession.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/imap/MCIMAPSession.cc b/src/core/imap/MCIMAPSession.cc
index a6db7e60..6df78cf0 100644
--- a/src/core/imap/MCIMAPSession.cc
+++ b/src/core/imap/MCIMAPSession.cc
@@ -3042,6 +3042,7 @@ String * plainTextBodyRendering(IMAPMessage * message, String * folder)
plainTextBodyString->replaceOccurrencesOfString(MCSTR("\n"), MCSTR(" "));
plainTextBodyString->replaceOccurrencesOfString(MCSTR("\r"), MCSTR(" "));
plainTextBodyString->replaceOccurrencesOfString(MCSTR("\t"), MCSTR(" "));
+ plainTextBodyString->replaceOccurrencesOfString(MCSTR(" "), MCSTR(" "));
return plainTextBodyString;
}