6
This commit is contained in:
parent
06a1a643d3
commit
9fa66bd05a
@ -48,7 +48,7 @@ namespace asg_form.Controllers
|
||||
try
|
||||
{
|
||||
var userInvited = await userManager.Users.FirstOrDefaultAsync(x => x.Id == msg.invitedId);
|
||||
if (userInvited != null) return Ok(new { code = 404, message = "用户未找到" });
|
||||
if (userInvited == null) return Ok(new { code = 404, message = "用户未找到" });
|
||||
|
||||
var invitationRecord = await sb.T_Invitation.FindAsync(msg.invitedId);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user