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