提交 0f42457d 编写于 作者: 智布道's avatar 智布道 👁

🐛 解决企业微信授权后,回调地址中原有的参数丢失的问题

上级 fa755689
......@@ -149,7 +149,7 @@ public class GlobalAuthUtils {
if (StringUtils.isEmpty(url)) {
return false;
}
return url.startsWith("http://");
return url.startsWith("http://") || url.startsWith("http%3A%2F%2F");
}
/**
......@@ -162,7 +162,7 @@ public class GlobalAuthUtils {
if (StringUtils.isEmpty(url)) {
return false;
}
return url.startsWith("https://");
return url.startsWith("https://") || url.startsWith("https%3A%2F%2F");
}
/**
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册