Fix llamalab_automate notify priority (#36845)

This commit is contained in:
fb22
2020-06-17 12:18:25 -07:00
committed by Paulus Schoutsen
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