Merge pull request #2023 from philipbl/fix_slack
Fix problem with Slack default channel
This commit is contained in:
commit
9729c44d53
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ class SlackNotificationService(BaseNotificationService):
|
|||
"""Send a message to a user."""
|
||||
import slacker
|
||||
|
||||
channel = kwargs.get('target', self._default_channel)
|
||||
channel = kwargs.get('target') or self._default_channel
|
||||
try:
|
||||
self.slack.chat.post_message(channel, message)
|
||||
except slacker.Error:
|
||||
|
|
Loading…
Add table
Reference in a new issue