From ae7f8b80ac86ef419c69b4224384e82ff85e82b9 Mon Sep 17 00:00:00 2001 From: edwinbernadus Date: Thu, 1 May 2025 06:39:04 +0700 Subject: [PATCH] Update token regex on chanify (#1325) --- apprise/plugins/chanify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apprise/plugins/chanify.py b/apprise/plugins/chanify.py index caf31494..a509c6dd 100644 --- a/apprise/plugins/chanify.py +++ b/apprise/plugins/chanify.py @@ -78,7 +78,7 @@ class NotifyChanify(NotifyBase): 'type': 'string', 'private': True, 'required': True, - 'regex': (r'^[A-Z0-9_-]+$', 'i'), + 'regex': (r'^[A-Z0-9._-]+$', 'i'), }, })