Thumbnail

rani/matterbridge.git

Clone URL: https://git.buni.party/rani/matterbridge.git

commit 3fcce2d8a05d45da9b13c85702ec6b9069585214 Author: Fredrik de Vibe <fdv@ifi.uio.no> Date: Fri Mar 18 18:13:17 2016 +0000 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. diff --git a/matterbridge.go b/matterbridge.go index 8a0dc76..4ca90dc 100644 --- a/matterbridge.go +++ b/matterbridge.go @@ -837 +837 @@ 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 {