mirror of
https://github.com/dataease/dataease.git
synced 2026-06-12 08:21:09 +08:00
fix: 修复新建账号登陆时,出现缓存bug,导致DataEase无法正常访问 #8124
This commit is contained in:
@@ -197,7 +197,8 @@ public class AuthServer implements AuthApi {
|
||||
result.put("passwordModified", false);
|
||||
result.put("defaultPwd", "dataease");
|
||||
}
|
||||
if (!user.getIsAdmin() && user.getPassword().equals("83d923c9f1d8fcaa46cae0ed2aaa81b5")) {
|
||||
|
||||
if (!user.getIsAdmin() && user.getPassword().equals(CodingUtil.md5(DEFAULT_PWD))) {
|
||||
result.put("passwordModified", false);
|
||||
result.put("defaultPwd", DEFAULT_PWD);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user