From cc8ff94b10603928ac36ce49f0255073c15e74cc Mon Sep 17 00:00:00 2001 From: Paulo Gustavo Veiga Date: Mon, 11 Feb 2013 13:25:07 -0300 Subject: [PATCH] Fix encoding issue on import. --- wise-webapp/src/main/webapp/jsp/mindmapImport.jsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wise-webapp/src/main/webapp/jsp/mindmapImport.jsp b/wise-webapp/src/main/webapp/jsp/mindmapImport.jsp index f7858b25..a551ed03 100644 --- a/wise-webapp/src/main/webapp/jsp/mindmapImport.jsp +++ b/wise-webapp/src/main/webapp/jsp/mindmapImport.jsp @@ -106,7 +106,7 @@ }); // Read in the image file as a data URL. - reader.readAsBinaryString(file); + reader.readAsText(file); }); // Hook for interaction with the main parent window ...