mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 03:10:26 +00:00
Fix empty messages on IRC (#1897)
This commit is contained in:
parent
9bbdf70e69
commit
3ad5deaff1
@ -86,6 +86,12 @@ func GetSubLines(message string, maxLineLength int, clippingMessage string) []st
|
|||||||
|
|
||||||
var lines []string
|
var lines []string
|
||||||
for _, line := range strings.Split(strings.TrimSpace(message), "\n") {
|
for _, line := range strings.Split(strings.TrimSpace(message), "\n") {
|
||||||
|
if line == "" {
|
||||||
|
// Prevent sending empty messages, so we'll skip this line
|
||||||
|
// if it has no content.
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
if maxLineLength == 0 || len([]byte(line)) <= maxLineLength {
|
if maxLineLength == 0 || len([]byte(line)) <= maxLineLength {
|
||||||
lines = append(lines, line)
|
lines = append(lines, line)
|
||||||
continue
|
continue
|
||||||
|
Loading…
Reference in New Issue
Block a user