From cf786f74d8464e5a7f3c7bb407b439143f30a1ca Mon Sep 17 00:00:00 2001 From: apexad <1437332+apexad@users.noreply.github.com> Date: Tue, 8 Dec 2020 22:17:19 -0700 Subject: [PATCH] fix: change manufacturer to be clear this is a homebridge plugin and not an Apple device --- src/platformAccessory.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platformAccessory.ts b/src/platformAccessory.ts index 4ce815a..3ea1279 100644 --- a/src/platformAccessory.ts +++ b/src/platformAccessory.ts @@ -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);