summaryrefslogtreecommitdiffstats
path: root/api
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-10-26 08:39:52 -0400
committerChristopher Speller <crspeller@gmail.com>2015-10-26 08:39:52 -0400
commitb20cb6693f79bfbcad5faf9e4140608c30ed8499 (patch)
tree0e3f1cd7fbb5f09faee2dba6e6f3efed108ea430 /api
parent5dfde11c6c8a87855f098ca5b57a89336dca13ec (diff)
parent9be2f341948bdab34bc2c07755d12faa6795cb70 (diff)
downloadchat-b20cb6693f79bfbcad5faf9e4140608c30ed8499.tar.gz
chat-b20cb6693f79bfbcad5faf9e4140608c30ed8499.tar.bz2
chat-b20cb6693f79bfbcad5faf9e4140608c30ed8499.zip
Merge pull request #1176 from florianorben/fix-shrug-command
Fix /shrug command
Diffstat (limited to 'api')
-rw-r--r--api/command.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/command.go b/api/command.go
index 54f863c48..35ca5816b 100644
--- a/api/command.go
+++ b/api/command.go
@@ -165,7 +165,7 @@ func shrugCommand(c *Context, command *model.Command) bool {
cmd := "/shrug"
if !command.Suggest && strings.Index(command.Command, cmd) == 0 {
- message := "¯\\_(ツ)_/¯"
+ message := `¯\\\_(ツ)_/¯`
parameters := strings.SplitN(command.Command, " ", 2)
if len(parameters) > 1 {