Skip to content
This repository has been archived by the owner on Oct 23, 2024. It is now read-only.

Commit

Permalink
fix: change manufacturer to be clear this is a homebridge plugin and …
Browse files Browse the repository at this point in the history
…not an Apple device
  • Loading branch information
apexad committed Dec 9, 2020
1 parent 6a61f8d commit cf786f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/platformAccessory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export default class AirportExpress implements AccessoryPlugin {
if(this.showSwitch) { this.switchService = new hap.Service.Switch(this.name); }

this.informationService = new this.hap.Service.AccessoryInformation()
.setCharacteristic(this.hap.Characteristic.Manufacturer, 'Apple Inc.')
.setCharacteristic(this.hap.Characteristic.Manufacturer, 'Apple Inc. via apexad')
.setCharacteristic(this.hap.Characteristic.Model, 'AirPort10,115')
.setCharacteristic(this.hap.Characteristic.SerialNumber, this.serialNumber);

Expand Down

0 comments on commit cf786f7

Please sign in to comment.