mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-10 22:19:26 +01: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:
parent
a53e699112
commit
3fcce2d8a0
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user