mirror of
https://github.com/cwinfo/matterbridge.git
synced 2025-07-19 03:28:55 +00:00
Limit number of columns to number of IRC nicks.
Don't add more columns to the IRC nicks table than the total number of nicks in the IRC channel.
This commit is contained in:
@ -83,7 +83,7 @@ func tableformatter (nicks_s string, nicksPerRow int) string {
|
||||
nicksPerRow = 4
|
||||
}
|
||||
for i := 0; i < 2; i++ {
|
||||
for j := 1; j <= nicksPerRow; j++ {
|
||||
for j := 1; j <= nicksPerRow && j <= len(nicks); j++ {
|
||||
if i == 0 {
|
||||
result += "|"
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user