fix(系统设置):创建缺陷创建人信息错误

--bug=1024663 --user=王旭 【测试跟踪】github#22942,Azure Devops 平台,创建缺陷,创建人不是【个人信息】配置的 token 对应的人,而是 【工作空间】配置的 token 对应的人 https://www.tapd.cn/55049933/s/1353708
This commit is contained in:
WangXu10 2023-03-21 15:01:40 +08:00 committed by jianxing
parent 025ad05767
commit f53f882480
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ public class UserService {
public UserDTO.PlatformInfo getCurrentPlatformInfo(String workspaceId) {
String currentPlatformInfoStr = getCurrentPlatformInfoStr(workspaceId);
if (StringUtils.isNotBlank(currentPlatformInfoStr)) {
JSON.parseObject(currentPlatformInfoStr, UserDTO.PlatformInfo.class);
return JSON.parseObject(currentPlatformInfoStr, UserDTO.PlatformInfo.class);
}
return null;
}