OSDN Git Service

Remove percent encoding from mail message.
authorRandy Baumgarte <randy@fbn.cx>
Thu, 30 Sep 2010 22:02:12 +0000 (18:02 -0400)
committerRandy Baumgarte <randy@fbn.cx>
Fri, 1 Oct 2010 16:44:25 +0000 (12:44 -0400)
src/cx/fbn/nevernote/NeverNote.java

index dfc165c..2a8e66b 100644 (file)
@@ -3215,7 +3215,8 @@ public class NeverNote extends QMainWindow{
             String text2 = browserWindow.getContentsToEmail();
             QUrl url = new QUrl("mailto:");
             url.addQueryItem("subject", currentNote.getTitle());
-            url.addQueryItem("body", QUrl.toPercentEncoding(text2).toString());
+//            url.addQueryItem("body", QUrl.toPercentEncoding(text2).toString());
+            url.addQueryItem("body", text2);
             QDesktopServices.openUrl(url);
         }
 /*