Fix fragment bug.

This commit is contained in:
vlofgren 2022-08-18 16:43:34 +02:00
parent 0bac422091
commit a034e3245e

View File

@ -34,7 +34,7 @@ public class EdgeUrl implements WideHashable {
public static String urlencodeFixer(String url) throws URISyntaxException {
var s = new StringBuilder();
String goodChars = "&.?:/-;+$";
String goodChars = "&.?:/-;+$#";
String hexChars = "0123456789abcdefABCDEF";
int pathIdx = findPathIdx(url);