Skip to content

Commit

Permalink
Lint checks
Browse files Browse the repository at this point in the history
  • Loading branch information
mattwoberts committed Oct 17, 2024
1 parent e1a6ebd commit bb947dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/services/sqlstore/postgres/comment.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func (c *dbComment) toModel(ctx context.Context) *entity.Comment {
}

if c.ReactionCounts.Valid {
json.Unmarshal([]byte(c.ReactionCounts.String), &comment.ReactionCounts)
_ = json.Unmarshal([]byte(c.ReactionCounts.String), &comment.ReactionCounts)
}
return comment
}
Expand Down

0 comments on commit bb947dd

Please sign in to comment.