Fix bug in error handling in SQLite InsertPreviousEvent (#1456)
parent
fed3ebd2f1
commit
91fc1f1c92
|
@ -98,7 +98,7 @@ func (s *previousEventStatements) InsertPreviousEvent(
|
||||||
eventNIDAsString := fmt.Sprintf("%d", eventNID)
|
eventNIDAsString := fmt.Sprintf("%d", eventNID)
|
||||||
selectStmt := sqlutil.TxStmt(txn, s.selectPreviousEventExistsStmt)
|
selectStmt := sqlutil.TxStmt(txn, s.selectPreviousEventExistsStmt)
|
||||||
err := selectStmt.QueryRowContext(ctx, previousEventID, previousEventReferenceSHA256).Scan(&eventNIDs)
|
err := selectStmt.QueryRowContext(ctx, previousEventID, previousEventReferenceSHA256).Scan(&eventNIDs)
|
||||||
if err != sql.ErrNoRows {
|
if err != nil && err != sql.ErrNoRows {
|
||||||
return fmt.Errorf("selectStmt.QueryRowContext.Scan: %w", err)
|
return fmt.Errorf("selectStmt.QueryRowContext.Scan: %w", err)
|
||||||
}
|
}
|
||||||
var nids []string
|
var nids []string
|
||||||
|
|
Loading…
Reference in New Issue