Fixed removing awstrack.me tracking parameters

master
M66B 2 weeks ago
parent 6b582a82c4
commit a1fa40127f

@ -344,9 +344,12 @@ public class UriHelper {
url = (changed ? result : uri);
} else if (uri.getHost() != null && uri.getHost().endsWith(".awstrack.me")) {
// https://docs.aws.amazon.com/ses/latest/dg/configure-custom-open-click-domains.html
String path = uri.getPath();
String path = uri.getEncodedPath();
int s = (path == null ? -1 : path.indexOf('/', 1));
Uri result = (s > 0 ? Uri.parse(path.substring(s + 1)) : null);
int e = (path == null ? -1 : path.indexOf('/', s + 1));
if (e < 0 && path != null)
e = path.length();
Uri result = (s > 0 && e > s ? Uri.parse(Uri.decode(path.substring(s + 1, e))) : null);
changed = (result != null && isHyperLink(result));
url = (changed ? result : uri);
} else {

Loading…
Cancel
Save