Fix parse subject
This commit is contained in:
parent
18baa2938b
commit
b7c1d74e83
2 changed files with 1 additions and 2 deletions
|
@ -92,7 +92,7 @@ func parseSubject(subject []string) []string {
|
|||
parsed := subject
|
||||
for _, sep := range []string{"/", ","} {
|
||||
p2 := []string{}
|
||||
for _, s := range subject {
|
||||
for _, s := range parsed {
|
||||
p2 = append(p2, strings.Split(s, sep)...)
|
||||
}
|
||||
parsed = p2
|
||||
|
|
Reference in a new issue