Skip to content

Commit 746173f

Browse files
committed
Fixed bugs
### FIXED - In some cases, the fingerprint maybe be longer than the recommended length of `5120`.
1 parent e0367e7 commit 746173f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "homebridge-adt-pulse",
33
"displayName": "Homebridge ADT Pulse",
4-
"version": "3.1.1",
4+
"version": "3.1.2",
55
"description": "Homebridge security system platform for ADT Pulse",
66
"main": "./build/index.js",
77
"exports": "./build/index.js",

src/lib/schema.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export const platformConfig = z.object({
1414
]),
1515
username: z.string().min(1).max(100),
1616
password: z.string().min(1).max(300),
17-
fingerprint: z.string().min(1).max(5120),
17+
fingerprint: z.string().min(1).max(10240),
1818
mode: z.union([
1919
z.literal('normal'),
2020
z.literal('paused'),

0 commit comments

Comments
 (0)