Skip to content

Commit

Permalink
Fixed bugs
Browse files Browse the repository at this point in the history
### FIXED
- In some cases, the fingerprint maybe be longer than the recommended length of `5120`.
  • Loading branch information
mrjackyliang committed Feb 2, 2024
1 parent e0367e7 commit 746173f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "homebridge-adt-pulse",
"displayName": "Homebridge ADT Pulse",
"version": "3.1.1",
"version": "3.1.2",
"description": "Homebridge security system platform for ADT Pulse",
"main": "./build/index.js",
"exports": "./build/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const platformConfig = z.object({
]),
username: z.string().min(1).max(100),
password: z.string().min(1).max(300),
fingerprint: z.string().min(1).max(5120),
fingerprint: z.string().min(1).max(10240),
mode: z.union([
z.literal('normal'),
z.literal('paused'),
Expand Down

0 comments on commit 746173f

Please sign in to comment.