Cleanup ConfigurationController warning

This commit is contained in:
Jordan Brown
2022-10-01 22:26:11 -04:00
parent cbb8a05d96
commit a7fa1279a9
@@ -87,7 +87,7 @@ namespace Tgstation.Server.Host.Controllers
cancellationToken)
;
return model.LastReadHash == null ? (IActionResult)Accepted(newFile) : Json(newFile);
return model.LastReadHash == null ? Accepted(newFile) : Json(newFile);
})
;
}