This commit is contained in:
77
2024-04-14 22:46:01 +08:00
parent bcb40cfc4a
commit 05c9cacf70
25 changed files with 99 additions and 42 deletions

View File

@@ -269,8 +269,16 @@ public class CurrentUserManager {
.set(User::getAvatarState, 1));
vo.setAuditStatus(AuditStatusEnum.SUCCESS.getCode());
imManager.updateImInfo(res.getUserId(),res.getAvatar(),null,null);
try {
anchorApplyService.checkAnchorAuto(user.getId());
}catch (Exception e){
log.error("检查是否自动主播失败!",e);
}
}
return vo;
}
@Autowired
private AnchorApplyService anchorApplyService;
}