Fix URL normalization when replacing /./ with /
Previously, a regular expression of /./ was used to replace /./ with /. The '.'' in the expression matches any single character so the replacement was more broadly applicable than it should have been. For example, /a/ would be replaced with /. This commit uses Pattern.LITERAL to compile the regular expression from the CURRENT_DIR (/./) contant. This allows the constant to be used to check for occurances of /./ in the string before attempting replacement, while also ensuring that the '.' is treated literally. Closes gh-17341pull/17391/head
parent
3bbe723718
commit
4083c721f2
Loading…
Reference in New Issue