mirror of
https://github.com/home-assistant/core.git
synced 2025-04-24 09:17:53 +00:00
Log if target == NULL
This commit is contained in:
parent
28f4283b40
commit
01a743c7d4
@ -46,6 +46,10 @@ class GoogleVoiceSMSNotificationService(BaseNotificationService):
|
||||
|
||||
targets = kwargs.get(ATTR_TARGET)
|
||||
|
||||
if not targets:
|
||||
_LOGGER.info('At least 1 target is required')
|
||||
return
|
||||
|
||||
if not isinstance(targets, list):
|
||||
targets = [targets]
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user