summaryrefslogtreecommitdiff
path: root/internal/federation/finger.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/federation/finger.go')
-rw-r--r--internal/federation/finger.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/federation/finger.go b/internal/federation/finger.go
index 5cdd4c04d..ef7896b86 100644
--- a/internal/federation/finger.go
+++ b/internal/federation/finger.go
@@ -39,7 +39,7 @@ func (f *federator) FingerRemoteAccount(ctx context.Context, requestingUsername
return nil, fmt.Errorf("FingerRemoteAccount: error getting transport for username %s while dereferencing @%s@%s: %s", requestingUsername, targetUsername, targetDomain, err)
}
- b, err := t.Finger(context.Background(), targetUsername, targetDomain)
+ b, err := t.Finger(ctx, targetUsername, targetDomain)
if err != nil {
return nil, fmt.Errorf("FingerRemoteAccount: error doing request on behalf of username %s while dereferencing @%s@%s: %s", requestingUsername, targetUsername, targetDomain, err)
}