mirror of
https://github.com/home-assistant/core.git
synced 2025-07-31 09:17:10 +00:00
Fix llamalab_automate notify priority (#36845)
This commit is contained in:
parent
0127974f09
commit
f823afeadc
@ -51,7 +51,7 @@ class AutomateNotificationService(BaseNotificationService):
|
||||
|
||||
# Extract params from data dict
|
||||
data = dict(kwargs.get(ATTR_DATA) or {})
|
||||
priority = data.get(ATTR_PRIORITY, "Normal")
|
||||
priority = data.get(ATTR_PRIORITY, "normal").lower()
|
||||
|
||||
_LOGGER.debug(
|
||||
"Sending to: %s, %s, prio: %s", self._recipient, str(self._device), priority
|
||||
|
Loading…
x
Reference in New Issue
Block a user