[manager,webapp]bugfix website monitor path Illegal character in path at index

This commit is contained in:
tomsun28
2022-03-04 13:54:30 +08:00
parent f3557b2859
commit 35f5bda51a
5 changed files with 30 additions and 1 deletions

View File

@@ -33,6 +33,7 @@ public class IpDomainUtil {
if (ipDomain == null || "".equals(ipDomain)) {
return false;
}
ipDomain = ipDomain.trim();
if (LOCALHOST.equalsIgnoreCase(ipDomain)) {
return true;
}