Skip to content

Commit

Permalink
Fix homelink error
Browse files Browse the repository at this point in the history
  • Loading branch information
Bre77 committed Jul 21, 2024
1 parent a1ad57b commit d510e36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vehicle-services/homelink.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export class HomelinkService extends BaseService {
current.updateValue(false);
target.updateValue(false);
})
.catch((e) => this.log.error(`${this.name} vehicle actuate_truck failed: ${e}`))
.catch((e) => this.log.error(`${this.name} vehicle trigger_homelink failed: ${e}`))

Check warning on line 23 in src/vehicle-services/homelink.ts

View workflow job for this annotation

GitHub Actions / build (18.x)

Missing semicolon

Check warning on line 23 in src/vehicle-services/homelink.ts

View workflow job for this annotation

GitHub Actions / build (20.x)

Missing semicolon
}
})
.updateValue(this.platform.Characteristic.TargetDoorState.CLOSED);
Expand Down

0 comments on commit d510e36

Please sign in to comment.