diff options
Diffstat (limited to 'internal/federation/dereferencing/finger.go')
-rw-r--r-- | internal/federation/dereferencing/finger.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/internal/federation/dereferencing/finger.go b/internal/federation/dereferencing/finger.go index f4cecb9c4..fff079327 100644 --- a/internal/federation/dereferencing/finger.go +++ b/internal/federation/dereferencing/finger.go @@ -69,6 +69,5 @@ func (d *deref) fingerRemoteAccount(ctx context.Context, transport transport.Tra } } - err = errors.New("fingerRemoteAccount: no match found in webfinger response") - return + return "", nil, errors.New("fingerRemoteAccount: no match found in webfinger response") } |