Work around nullable ints

This commit is contained in:
2025-07-30 22:01:15 -07:00
parent 47bc07e327
commit f3a0611b1d
6 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -26,7 +26,7 @@ namespace BoredCareers.Controllers {
public async Task<IActionResult> SetCompany([FromBody] Company company, [FromQuery] bool newCompany = false) {
if (isLoggedIn()) {
if (newCompany) {
Company? test = await _databaseService.GetCompany(company.ID);
Company? test = await _databaseService.GetCompany(Convert.ToInt32(company.ID));
if (test == null) {
company.ID = await _databaseService.SetCompany(company);
await _databaseService.SetEmployee(new Employee() {
@@ -37,7 +37,7 @@ namespace BoredCareers.Controllers {
}
return NotFound("The company already exists");
} else {
if (await isLoggedInUserEmployeeOf(company.ID)) {
if (await isLoggedInUserEmployeeOf(Convert.ToInt32(company.ID))) {
await _databaseService.SetCompany(company);
return Ok();
}