From 713cec5f45728bd8ce00f3ba04df5868e95d4960 Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Sun, 24 Sep 2017 10:32:06 -0400 Subject: [PATCH] make it work --- contrib/backends/srndv2/src/srnd/postgres.go | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/backends/srndv2/src/srnd/postgres.go b/contrib/backends/srndv2/src/srnd/postgres.go index 30251c3..db3a403 100644 --- a/contrib/backends/srndv2/src/srnd/postgres.go +++ b/contrib/backends/srndv2/src/srnd/postgres.go @@ -1921,6 +1921,7 @@ func (self *PostgresDatabase) GetNewsgroupList() (list NewsgroupList, err error) rows.Scan(&l[0], &lo, &hi) l[1] = fmt.Sprintf("%d", lo) l[2] = fmt.Sprintf("%d", hi) + list = append(list, l) } rows.Close() }