Skip to content

Commit

Permalink
fix golint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sonroyaalmerol committed Mar 2, 2024
1 parent e233cd5 commit b5a2b3b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions database/db.go
Original file line number Diff line number Diff line change
Expand Up @@ -210,9 +210,8 @@ func GetStreamByTitle(title string) (s StreamInfo, err error) {
if err := rows.Err(); err != nil {
return s, fmt.Errorf("error iterating over rows: %v", err)
}

return s, nil
}

if err := rows.Err(); err != nil {
return s, fmt.Errorf("error iterating over rows: %v", err)
}
Expand Down

0 comments on commit b5a2b3b

Please sign in to comment.