Skip to content

Commit

Permalink
chore(alarm): fix CTX60 update zone error
Browse files Browse the repository at this point in the history
  • Loading branch information
mgcrea committed Aug 22, 2023
1 parent 490d91c commit 5af9891
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/accessories/securitySystem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,10 +160,10 @@ export const setupSecuritySystem = async (
log.warn(`Setting up legacy zones`);
// @NOTE could filter "UNUSED" zones from initialData
zones = [
{id: 1, nameCustom: 'Zone 1'},
{id: 2, nameCustom: 'Zone 2'},
{id: 3, nameCustom: 'Zone 3'},
{id: 4, nameCustom: 'Zone 4'}
{id: 0, nameCustom: 'Zone 1'},
{id: 1, nameCustom: 'Zone 2'},
{id: 2, nameCustom: 'Zone 3'},
{id: 3, nameCustom: 'Zone 4'}
];
}

Expand Down

0 comments on commit 5af9891

Please sign in to comment.