aboutsummaryrefslogtreecommitdiff
path: root/client.go
diff options
context:
space:
mode:
Diffstat (limited to 'client.go')
-rw-r--r--client.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/client.go b/client.go
index f4575f5..8cb9004 100644
--- a/client.go
+++ b/client.go
@@ -68,6 +68,7 @@ type AdminPage struct {
type Report struct {
ID string
Count int
+ Reason string
}
type Removed struct {
@@ -484,7 +485,7 @@ func CreateLocalReportDB(db *sql.DB, id string, board string, reason string) {
func GetLocalReportDB(db *sql.DB, board string) []Report {
var reported []Report
- query := `select id, count from reported where board=$1`
+ query := `select id, count, reason from reported where board=$1`
rows, err := db.Query(query, board)
@@ -495,7 +496,7 @@ func GetLocalReportDB(db *sql.DB, board string) []Report {
for rows.Next() {
var r Report
- rows.Scan(&r.ID, &r.Count)
+ rows.Scan(&r.ID, &r.Count, &r.Reason)
reported = append(reported, r)
}