fixed file names
[meviz.git] / src / main / java / eu / svjatoslav / meviz / htmlindexer / Utils.java
index 4455992..d193dba 100755 (executable)
@@ -130,10 +130,9 @@ public class Utils {
 
        public static String urlEncode(String string) {
                try {
-                       return URLEncoder.encode(string, UTF_8);
+                       return URLEncoder.encode(string, UTF_8).replace("+", "%20");
                } catch (UnsupportedEncodingException e) {
                        throw new RuntimeException(e);
                }
        }
-
 }