aboutsummaryrefslogtreecommitdiff
path: root/clientapi/auth/storage/accounts/threepid_table.go
diff options
context:
space:
mode:
Diffstat (limited to 'clientapi/auth/storage/accounts/threepid_table.go')
-rw-r--r--clientapi/auth/storage/accounts/threepid_table.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/clientapi/auth/storage/accounts/threepid_table.go b/clientapi/auth/storage/accounts/threepid_table.go
index 5900260a..a03aa4f8 100644
--- a/clientapi/auth/storage/accounts/threepid_table.go
+++ b/clientapi/auth/storage/accounts/threepid_table.go
@@ -97,6 +97,7 @@ func (s *threepidStatements) selectThreePIDsForLocalpart(
if err != nil {
return
}
+ defer rows.Close() // nolint: errcheck
threepids = []authtypes.ThreePID{}
for rows.Next() {
@@ -110,8 +111,7 @@ func (s *threepidStatements) selectThreePIDsForLocalpart(
Medium: medium,
})
}
-
- return
+ return threepids, rows.Err()
}
func (s *threepidStatements) insertThreePID(