Browse Source

Fix quote escape

Pascal Peridont 19 years ago
parent
commit
79d72cee8a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      std/mtwin/mail/imap/Envelope.hx

+ 1 - 1
std/mtwin/mail/imap/Envelope.hx

@@ -115,7 +115,7 @@ class Envelope {
 						b.add( c2 );
 						prev = c2;
 					}
-					addElement( b.toString() );
+					addElement( b.toString().split("\\\"").join("\"").split("\\\\").join("\\") );
 				case " ":
 					if( parCount == 0 ){
 						argPos++;