diff --git a/config_handler/config_handler.go b/config_handler/config_handler.go index a64e94e..476fc76 100644 --- a/config_handler/config_handler.go +++ b/config_handler/config_handler.go @@ -176,7 +176,7 @@ func foundAppByMessage(message string) []string { if i >= 0 { j := strings.Index(message[i:], "]") if j >= 0 { - return append([]string{message[i+1 : j+i]}, foundAppByMessage(message[j+i:])...) + return append(strings.Split(message[i+1:j+i], ","), foundAppByMessage(message[j+i:])...) } } return []string{}