Skip to content

Commit

Permalink
Typo in disableAlarmToggleAccessory
Browse files Browse the repository at this point in the history
  • Loading branch information
kopiro committed Aug 3, 2024
1 parent c79a4fb commit da6357d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cameraAccessory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export type CameraConfig = {
pullInterval?: number;
disableStreaming?: boolean;
disableEyesToggleAccessory?: boolean;
disableAlarmToogleAccessory?: boolean;
disableAlarmToggleAccessory?: boolean;
disableNotificationsToggleAccessory?: boolean;
disableMotionDetectionToggleAccessory?: boolean;
disableLedToggleAccessory?: boolean;
Expand Down Expand Up @@ -238,7 +238,7 @@ export class CameraAccessory {
);
}

if (!this.config.disableAlarmToogleAccessory) {
if (!this.config.disableAlarmToggleAccessory) {
this.setupToggleAccessory(
this.config.alarmToggleAccessoryName || "Alarm",
"alarm"
Expand Down

0 comments on commit da6357d

Please sign in to comment.