Skip to content

Commit

Permalink
Fix null github field error
Browse files Browse the repository at this point in the history
  • Loading branch information
karashiiro committed May 7, 2022
1 parent 44eab3e commit 3c20cf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/reports/reports.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ func (j *ReportJob) Execute() {
// Read the next row from the database
var readerId int
var readerEmail string
var readerGithub string
var readerGithub *string
var readerLastSent *time.Time
err := rows.Scan(&readerId, &readerEmail, &readerGithub, &readerLastSent)
if err != nil {
Expand Down

0 comments on commit 3c20cf7

Please sign in to comment.