Update mautrix-go and stop sending all thread messages as replies

This commit is contained in:
Tulir Asokan
2022-10-28 23:45:35 +03:00
parent 8728867737
commit b64617a699
5 changed files with 6 additions and 6 deletions

View File

@@ -33,7 +33,7 @@ func (up UserPortal) Scan(l log.Logger, row dbutil.Scannable) *UserPortal {
return &up
}
func (u *User) scanUserPortals(rows *sql.Rows) []UserPortal {
func (u *User) scanUserPortals(rows dbutil.Rows) []UserPortal {
var ups []UserPortal
for rows.Next() {
up := UserPortal{}.Scan(u.log, rows)