summaryrefslogtreecommitdiffstats
path: root/api/command.go
diff options
context:
space:
mode:
authorJustyn Shull <justyns@codero.com>2015-09-29 11:48:13 -0500
committerJustyn Shull <justyns@codero.com>2015-09-29 11:48:13 -0500
commit5064f9cba2a63c166776279b2763151f8aed5310 (patch)
tree8406c3d662c61912a47e0a1571a14a5528913a1d /api/command.go
parent2c11cbc266b87e7596c628b414e9229a534411a8 (diff)
downloadchat-5064f9cba2a63c166776279b2763151f8aed5310.tar.gz
chat-5064f9cba2a63c166776279b2763151f8aed5310.tar.bz2
chat-5064f9cba2a63c166776279b2763151f8aed5310.zip
Update the /join command to use the correct redirect URL, and update the test to match
Diffstat (limited to 'api/command.go')
-rw-r--r--api/command.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/command.go b/api/command.go
index 0d2f7597b..427922344 100644
--- a/api/command.go
+++ b/api/command.go
@@ -195,7 +195,7 @@ func joinCommand(c *Context, command *model.Command) bool {
return false
}
- command.GotoLocation = "/channels/" + v.Name
+ command.GotoLocation = c.GetTeamURL() + "/channels/" + v.Name
command.Response = model.RESP_EXECUTED
return true
}