修复allow_http2的状态更新

This commit is contained in:
wangwei
2019-06-05 16:52:22 +08:00
parent d7bcd91b8a
commit ad04b41d7a

View File

@@ -210,8 +210,8 @@ public class InterceptController extends CommonController {
if(StringUtils.isNotBlank(allow_http2)){
map.put("allow_http2", Integer.parseInt(allow_http2.trim()));
}else {
allow_http2="1";
map.put("allow_http2", 1);
allow_http2="0";
map.put("allow_http2", 0);
}
if("0".equals(mirror_client)) {
if(StringUtils.isNotBlank(min)){