commit e5e257c2597dec1997b101fb5555a7e83972985f
parent 95715f9251da56bfb7a8c7c48ca5bf38d2392f03
Author: tobi <31960611+tsmethurst@users.noreply.github.com>
Date: Thu, 9 Feb 2023 10:34:44 +0100
[bugfix] Fix error on searching for account w/accountDomain by host (#1465)
Diffstat:
1 file changed, 18 insertions(+), 0 deletions(-)
diff --git a/internal/federation/dereferencing/account.go b/internal/federation/dereferencing/account.go
@@ -162,6 +162,24 @@ func (d *deref) enrichAccount(ctx context.Context, requestUser string, uri *url.
}
if err == nil {
+ if account.Domain != accDomain {
+ // We have the correct accountDomain now; if it was different from
+ // the account domain we were provided, do another db lookup to check
+ // if we already had the account in the db under the account domain we
+ // just discovered, otherwise we risk thinking this is a new account
+ // and trying to put it into the database again (which will cause issues).
+ alreadyAccount, err := d.db.GetAccountByUsernameDomain(ctx, account.Username, accDomain)
+ if err != nil && !errors.Is(err, db.ErrNoEntries) {
+ return nil, fmt.Errorf("enrichAccount: db err looking for account again after webfinger: %w", err)
+ }
+
+ if err == nil {
+ // We already had the account in the database;
+ // continue by enriching that one instead.
+ account = alreadyAccount
+ }
+ }
+
// Update account with latest info.
account.URI = accURI.String()
account.Domain = accDomain