Archived
1
0

make it work

This commit is contained in:
Jeff Becker 2017-09-24 10:32:06 -04:00
parent da7ad5a7fe
commit 713cec5f45
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

View File

@ -1921,6 +1921,7 @@ func (self *PostgresDatabase) GetNewsgroupList() (list NewsgroupList, err error)
rows.Scan(&l[0], &lo, &hi) rows.Scan(&l[0], &lo, &hi)
l[1] = fmt.Sprintf("%d", lo) l[1] = fmt.Sprintf("%d", lo)
l[2] = fmt.Sprintf("%d", hi) l[2] = fmt.Sprintf("%d", hi)
list = append(list, l)
} }
rows.Close() rows.Close()
} }