made sure to print json for unknown actions

This commit is contained in:
A_D 2018-11-17 21:29:48 +02:00
parent 2a54c81da1
commit ec93fcaff9
No known key found for this signature in database
GPG Key ID: C242F3DD220FA945
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,6 @@ func handleUnknown(data []byte, msgChan chan string) {
}
func handlePush(data []byte, msgChan chan string) {
printSep()
pushData := Push{}
json.Unmarshal(data, &pushData)
outIrcMessage := strings.Builder{}
@ -90,6 +89,7 @@ func handleIssueAction(data []byte, msgChan chan string) {
outMsg.WriteString(fmt.Sprintf("%s closed issue %q", action.Sender.Login, action.Issue.Title))
default:
outMsg.WriteString(fmt.Sprintf("%s performed an unknown action (%s) on issue %f", action.Sender.Login, action.Action, action.Issue.Id))
fmt.Println(string(data))
}
msgChan <- outMsg.String()
}