summaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorGeorge Goldberg <george@gberg.me>2017-04-04 18:19:42 +0100
committerGitHub <noreply@github.com>2017-04-04 18:19:42 +0100
commit32460bf63bc07c69ee5da0bb5640b879facb5538 (patch)
tree2ee6abc94175823632e9f9ab40172948fcfa0f85 /cmd
parent0b5c0794fdcbb551c1233dcdfbdf5c7deb585fd6 (diff)
downloadchat-32460bf63bc07c69ee5da0bb5640b879facb5538.tar.gz
chat-32460bf63bc07c69ee5da0bb5640b879facb5538.tar.bz2
chat-32460bf63bc07c69ee5da0bb5640b879facb5538.zip
PLT-6198: Use added to channel system message on default channels. (#5969)
Use a different sytem message when a user was added to a default channel by someone else than when they joined themselves.
Diffstat (limited to 'cmd')
-rw-r--r--cmd/platform/team.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/platform/team.go b/cmd/platform/team.go
index 1dc5d46eb..eb2939617 100644
--- a/cmd/platform/team.go
+++ b/cmd/platform/team.go
@@ -154,7 +154,7 @@ func addUserToTeam(team *model.Team, user *model.User, userArg string) {
CommandPrintErrorln("Can't find user '" + userArg + "'")
return
}
- if err := app.JoinUserToTeam(team, user); err != nil {
+ if err := app.JoinUserToTeam(team, user, ""); err != nil {
CommandPrintErrorln("Unable to add '" + userArg + "' to " + team.Name)
}
}