1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-06 13:38:13 -05:00

[Reset Password] - BUG - Upgrade request model Keys null check (#1403)

This commit is contained in:
Vincent Salucci 2021-06-22 15:14:26 -05:00 committed by GitHub
parent 666e99225c
commit 15d863459e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,7 +34,7 @@ namespace Bit.Core.Models.Api
}
};
Keys.ToOrganizationUpgrade(orgUpgrade);
Keys?.ToOrganizationUpgrade(orgUpgrade);
return orgUpgrade;
}