updated to work with Apprise v1.9.1

This commit is contained in:
Chris Caron 2024-12-17 21:02:22 -05:00
parent ebfe1292cb
commit b96212a938
2 changed files with 2 additions and 2 deletions

View File

@ -744,7 +744,7 @@ def send_webhook(payload):
}
try:
if not apprise.utils.VALID_URL_RE.match(settings.APPRISE_WEBHOOK_URL).group('schema'):
if not apprise.utils.parse.VALID_URL_RE.match(settings.APPRISE_WEBHOOK_URL).group('schema'):
raise AttributeError()
except (AttributeError, TypeError):

View File

@ -10,7 +10,7 @@
# apprise @ git+https://github.com/caronc/apprise@custom-tag-or-version
## 3. The below grabs our stable version (generally the best choice):
apprise == 1.9.0
apprise == 1.9.1
## Apprise API Minimum Requirements
django