Compare commits

...
2 Commits
Author SHA1 Message Date
Dustin Pianalto 2cac64f91b Add log on shellquote error 2020-06-02 13:34:13 -08:00
Dustin Pianalto 71efaa0d45 Increase default interval on status manager 2020-06-01 15:02:24 -08:00
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -94,6 +94,7 @@ func (c *CommandManager) OnMessage(session *discordgo.Session, m *discordgo.Mess
// If we found our prefix then remove it and split the command into pieces // If we found our prefix then remove it and split the command into pieces
cmd, err = shellquote.Split(strings.TrimPrefix(content, prefix)) cmd, err = shellquote.Split(strings.TrimPrefix(content, prefix))
if err != nil { if err != nil {
fmt.Println(err.Error())
if err.Error() == "Unterminated double-quoted string" || err.Error() == "Unterminated single-quoted string" { if err.Error() == "Unterminated double-quoted string" || err.Error() == "Unterminated single-quoted string" {
cmd = strings.Split(strings.TrimPrefix(content, prefix), " ") cmd = strings.Split(strings.TrimPrefix(content, prefix), " ")
} else { } else {
+1 -1
View File
@@ -20,7 +20,7 @@ func GetDefaultStatusManager() StatusManager {
"Golang!", "Golang!",
"DiscordGo!", "DiscordGo!",
"Disgoman!", "Disgoman!",
}, "30s"} }, "300s"}
} }
// HasHigherRole checks if the caller has a higher role than the target in the given guild // HasHigherRole checks if the caller has a higher role than the target in the given guild