Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This us achieved by using strings.Fields instead of strings.Split This results in a cleaner output when parsing messages like "/tags a lot of spaces" Output before: `[]string{"a", "", "", "", "", "", "", "", "", "", "lot", "", "", "", "", "", "", "", "", "of", "", "", "", "", "", "", "", "spaces"}` Output after the change: `[]string{"a", "lot", "of", "spaces"}`
- Loading branch information