diff options
author | 2022-09-02 10:56:33 +0100 | |
---|---|---|
committer | 2022-09-02 11:56:33 +0200 | |
commit | 614ab12733b991dbea9d1f7fa311a98072558727 (patch) | |
tree | 41780382cb71413566c8c87ce1ce0184c504253b /internal/processing/federation/getwebfinger.go | |
parent | [feature] Emojify spoiler and content in web templates (#785) (diff) | |
download | gotosocial-614ab12733b991dbea9d1f7fa311a98072558727.tar.xz |
[performance] use GetAccountByUsernameDomain() for local account lookups to rely on cache (#793)
Signed-off-by: kim <grufwub@gmail.com>
Signed-off-by: kim <grufwub@gmail.com>
Diffstat (limited to 'internal/processing/federation/getwebfinger.go')
-rw-r--r-- | internal/processing/federation/getwebfinger.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/processing/federation/getwebfinger.go b/internal/processing/federation/getwebfinger.go index 7158680d7..a1e1cb983 100644 --- a/internal/processing/federation/getwebfinger.go +++ b/internal/processing/federation/getwebfinger.go @@ -37,7 +37,7 @@ const ( func (p *processor) GetWebfingerAccount(ctx context.Context, requestedUsername string) (*apimodel.WellKnownResponse, gtserror.WithCode) { // get the account the request is referring to - requestedAccount, err := p.db.GetLocalAccountByUsername(ctx, requestedUsername) + requestedAccount, err := p.db.GetAccountByUsernameDomain(ctx, requestedUsername, "") if err != nil { return nil, gtserror.NewErrorNotFound(fmt.Errorf("database error getting account with username %s: %s", requestedUsername, err)) } |