Cast lametric cycles parameter to int (#19370)

pull/19423/head
jumpkick 2018-12-17 18:14:55 -05:00 committed by Martin Hjelmare
parent d270d52cb5
commit f1005d37a7
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ class LaMetricNotificationService(BaseNotificationService):
_LOGGER.error("Sound ID %s unknown, ignoring",
data["sound"])
if "cycles" in data:
cycles = data['cycles']
cycles = int(data['cycles'])
if "priority" in data:
if data['priority'] in AVAILABLE_PRIORITIES:
priority = data['priority']