1
0
mirror of https://github.com/matrix-org/dendrite.git synced 2024-06-17 22:37:12 +00:00

selectAccountDataByType shouldn't error when no rows (#804)

Signed-off-by: Alex Chen <minecnly@gmail.com>
This commit is contained in:
Alex Chen 2019-10-07 20:15:58 +08:00 committed by Andrew Morgan
parent 9a56cf8439
commit e959927d0a

View File

@ -125,6 +125,10 @@ func (s *accountDataStatements) selectAccountDataByType(
var content []byte
if err = stmt.QueryRowContext(ctx, localpart, roomID, dataType).Scan(&content); err != nil {
if err == sql.ErrNoRows {
return nil, nil
}
return
}