Skip to content

Commit

Permalink
fix: missing bracket
Browse files Browse the repository at this point in the history
  • Loading branch information
shingoxx222 committed Nov 13, 2024
1 parent 500288d commit 133b1c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/ocpp/v201/charge_point.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3602,8 +3602,7 @@ void ChargePoint::handle_install_certificate_req(Call<InstallCertificateRequest>
response.statusInfo->reasonCode = "Invalid security profile";
response.statusInfo->additionalInfo = "SecurityProfileTooLowForCertificateHandling";
}
else
{
else {
const auto result = this->evse_security->install_ca_certificate(
msg.certificate.get(), ocpp::evse_security_conversions::from_ocpp_v201(msg.certificateType));
response.status = ocpp::evse_security_conversions::to_ocpp_v201(result);
Expand All @@ -3613,6 +3612,7 @@ void ChargePoint::handle_install_certificate_req(Call<InstallCertificateRequest>
"Installed certificate: " + conversions::install_certificate_use_enum_to_string(msg.certificateType);
this->security_event_notification_req(CiString<50>(security_event), CiString<255>(tech_info), true,
utils::is_critical(security_event));
}
}
ocpp::CallResult<InstallCertificateResponse> call_result(response, call.uniqueId);
this->send<InstallCertificateResponse>(call_result);
Expand Down

0 comments on commit 133b1c3

Please sign in to comment.