We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OCPP2.0.1
libocpp/lib/ocpp/v201/smart_charging.cpp
Func in SmartChargingHandler::validate_tx_default_profile
auto profiles = evse_id == 0 ? get_evse_specific_tx_default_profiles() : get_station_wide_tx_default_profiles();
I think there may be a problem with this expression. Replace with the following: auto profiles = evse_id != 0 ...
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
OCPP Version
OCPP2.0.1
Describe the bug
libocpp/lib/ocpp/v201/smart_charging.cpp
Func in SmartChargingHandler::validate_tx_default_profile
auto profiles = evse_id == 0 ? get_evse_specific_tx_default_profiles() : get_station_wide_tx_default_profiles();
I think there may be a problem with this expression.
Replace with the following:
auto profiles = evse_id != 0 ...
To Reproduce
No response
Anything else?
No response
The text was updated successfully, but these errors were encountered: