Fix Count and MarkRead
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Peter Stuifzand 2021-05-13 11:51:46 +02:00
parent 54e55c194e
commit dcff9a4890
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG Key ID: 374322D56E5209E8

View File

@ -173,18 +173,14 @@ func (p *postgresStream) Count() (int, error) {
return -1, err return -1, err
} }
defer conn.Close() defer conn.Close()
rows, err := conn.QueryContext(context.Background(), "SELECT COUNT(*) FROM items WHERE channel_id = ?", p.channel) row := conn.QueryRowContext(context.Background(), "SELECT COUNT(*) FROM items WHERE channel_id = $1", p.channelID)
if err != nil { if row == nil {
return 0, err return 0, nil
} }
var count int var count int
for rows.Next() { err = row.Scan(&count)
err = rows.Scan(&count) if err != nil {
if err != nil { return -1, err
return -1, err
}
break
} }
return count, nil return count, nil
@ -224,10 +220,10 @@ func (p *postgresStream) MarkRead(uids []string) error {
ctx := context.Background() ctx := context.Background()
conn, err := p.database.Conn(ctx) conn, err := p.database.Conn(ctx)
if err != nil { if err != nil {
return err return fmt.Errorf("getting connection: %w", err)
} }
defer conn.Close() defer conn.Close()
_, err = conn.ExecContext(context.Background(), `UPDATE "items" SET is_read = 1 WHERE "uid" IN ($1)`, pq.Array(uids)) _, err = conn.ExecContext(context.Background(), `UPDATE "items" SET is_read = 1 WHERE "uid" = ANY($1)`, pq.Array(uids))
if err != nil { if err != nil {
return fmt.Errorf("while marking as read: %w", err) return fmt.Errorf("while marking as read: %w", err)
} }