Fixed parsing of custom nid for Home Assistant plugin (#627)

pull/629/head
Chris Caron 2 years ago committed by GitHub
parent 113fa365f2
commit 6d56ed5492
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -107,7 +107,7 @@ class NotifyHomeAssistant(NotifyBase):
# Optional Unique Notification ID
'name': _('Notification ID'),
'type': 'string',
'regex': (r'^[a-f0-9_-]+$', 'i'),
'regex': (r'^[a-z0-9_-]+$', 'i'),
},
})

Loading…
Cancel
Save