Simplify error checking

This commit is contained in:
Andrew Morgan 2018-06-08 14:38:33 +01:00
parent 12a9538282
commit 5f576148ac

View file

@ -130,9 +130,7 @@ func (s *accountsStatements) selectAccountByLocalpart(
stmt := s.selectAccountByLocalpartStmt
err := stmt.QueryRowContext(ctx, localpart).Scan(&acc.Localpart, &appserviceIDPtr)
if err != nil {
switch err {
case sql.ErrNoRows:
default:
if err != sql.ErrNoRows {
log.WithError(err).Error("Unable to retrieve user from the db")
}
return nil, err