mirror of
https://github.com/home-assistant/core.git
synced 2025-07-22 20:57:21 +00:00
Fix pushover's ATTR_RETRY env variable typo (#32440)
This commit is contained in:
parent
02c8cd07f3
commit
7e3e4c1668
@ -61,7 +61,7 @@ class PushoverNotificationService(BaseNotificationService):
|
||||
url = data.get(ATTR_URL, None)
|
||||
url_title = data.get(ATTR_URL_TITLE, None)
|
||||
priority = data.get(ATTR_PRIORITY, None)
|
||||
retry = data.get(ATTR_PRIORITY, None)
|
||||
retry = data.get(ATTR_RETRY, None)
|
||||
expire = data.get(ATTR_EXPIRE, None)
|
||||
callback_url = data.get(ATTR_CALLBACK_URL, None)
|
||||
timestamp = data.get(ATTR_TIMESTAMP, None)
|
||||
|
Loading…
x
Reference in New Issue
Block a user