space is %20, not %32 (hexa, not deci)
[fanfix.git] / src / be / nikiroo / fanfix / supported / E621.java
index d6cbad40744743f27550e66b8f3357caa1be2591..aa3084f210cf99140d53d3878f326de46172d6f2 100644 (file)
@@ -384,7 +384,7 @@ class E621 extends BasicSupport_Deprecated {
                        if (source.toString().contains(key)) {
                                int pos = source.toString().indexOf(key);
                                String tags = source.toString().substring(pos + key.length());
-                               tags = tags.replace("+", "%32");
+                               tags = tags.replace("+", "%20");
                                try {
                                        return new URL(source.toString().substring(0, pos)
                                                        + "post/index/1/" + tags);