mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 05:07:41 +00:00
Fixed slack component bug with getting the channel when sending a message (#1954)
This commit is contained in:
parent
4710b38fad
commit
b51561cd9b
@ -51,7 +51,7 @@ class SlackNotificationService(BaseNotificationService):
|
|||||||
"""Send a message to a user."""
|
"""Send a message to a user."""
|
||||||
import slacker
|
import slacker
|
||||||
|
|
||||||
channel = kwargs.get('channel', self._default_channel)
|
channel = kwargs.get('target', self._default_channel)
|
||||||
try:
|
try:
|
||||||
self.slack.chat.post_message(channel, message)
|
self.slack.chat.post_message(channel, message)
|
||||||
except slacker.Error:
|
except slacker.Error:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user