We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2911af8 commit 4098d69Copy full SHA for 4098d69
src/lib/bluelink-regions/europe.ts
@@ -420,7 +420,10 @@ export class BluelinkEurope extends Bluelink {
420
status.Green.ChargingInformation.Charging.RemainTime > 0
421
) {
422
isCharging = true
423
- chargingPower = status.Green.Electric.SmartGrid.RealTimePower
+ // check for charging power as sometimes not available
424
+ if (status.Green.Electric && status.Green.Electric.SmartGrid && status.Green.Electric.SmartGrid.RealTimePower) {
425
+ chargingPower = status.Green.Electric.SmartGrid.RealTimePower
426
+ }
427
}
428
429
// check for charge limits
src/version.json
@@ -1,3 +1,3 @@
1
{
2
- "version":"v1.3.0"
+ "version":"v1.3.1"
3
0 commit comments