We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55db37d commit c740034Copy full SHA for c740034
custom_components/ocpp/api.py
@@ -494,7 +494,7 @@ async def get_supported_features(self):
494
_LOGGER.warning("Force Smart Charging feature profile")
495
self._attr_supported_features |= prof.SMART
496
for item in feature_list:
497
- item = item.strip()
+ item = item.strip().replace(" ", "")
498
if item == om.feature_profile_core.value:
499
self._attr_supported_features |= prof.CORE
500
elif item == om.feature_profile_firmware.value:
0 commit comments