update server/src/main/java/cn/keking/web/filter/TrustHostFilter.java.

修复开启信任站点 继续执行

Signed-off-by: 高雄 <admin@cxcp.com>
pull/76/head
高雄 2023-03-20 07:28:03 +00:00 committed by Gitee
parent a867effa68
commit 98a7217b10
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 3 additions and 1 deletions

View File

@ -42,7 +42,9 @@ public class TrustHostFilter implements Filter {
response.getWriter().write(html);
response.getWriter().close();
}
chain.doFilter(request, response);
else {
chain.doFilter(request, response);
}
}
@Override