1
0
mirror of https://github.com/bitwarden/server.git synced 2025-05-22 12:04:27 -05:00

remove unneeded null check

This commit is contained in:
Nick Krantz 2025-05-21 09:33:09 -05:00
parent 2d45585beb
commit e2df7755e6
No known key found for this signature in database
GPG Key ID: FF670021ABCAB82E

View File

@ -84,11 +84,6 @@ public class ChangePasswordUriController : Controller
}
}
if (changePasswordUri == null)
{
return Ok(new ChangePasswordUriResponse(changePasswordUri));
}
return Ok(new ChangePasswordUriResponse(changePasswordUri));
}
}