fixed file names
authorSvjatoslav Agejenko <svjatoslav@svjatoslav.eu>
Thu, 11 Jun 2015 20:12:43 +0000 (23:12 +0300)
committerSvjatoslav Agejenko <svjatoslav@svjatoslav.eu>
Thu, 11 Jun 2015 20:12:43 +0000 (23:12 +0300)
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);
                }
        }
-
 }