Skip to content

Commit

Permalink
updated to work with Apprise v1.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
caronc committed Dec 20, 2024
1 parent ebfe129 commit b96212a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apprise_api/api/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b96212a

Please sign in to comment.