diff options
author | Claire <claire.github-309c@sitedethib.com> | 2022-11-09 20:10:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-09 20:10:38 +0100 |
commit | a5394980f22e061ec7e4f6df3f3b571624f5ca7d (patch) | |
tree | d3e46947a2e5a802b949bc65920d57bd3a1dfb42 /app/services | |
parent | cd0a87f170f795f3d2eeaadc06d6039aca395049 (diff) |
Fix NameError in Webfinger redirect handling in ActivityPub::FetchRemoteActorService (#20260)
Diffstat (limited to 'app/services')
-rw-r--r-- | app/services/activitypub/fetch_remote_actor_service.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/activitypub/fetch_remote_actor_service.rb b/app/services/activitypub/fetch_remote_actor_service.rb index 17bf2f287..db09c38d8 100644 --- a/app/services/activitypub/fetch_remote_actor_service.rb +++ b/app/services/activitypub/fetch_remote_actor_service.rb @@ -56,7 +56,7 @@ class ActivityPub::FetchRemoteActorService < BaseService @username, @domain = split_acct(webfinger.subject) unless confirmed_username.casecmp(@username).zero? && confirmed_domain.casecmp(@domain).zero? - raise Webfinger::RedirectError, "Too many webfinger redirects for URI #{uri} (stopped at #{@username}@#{@domain})" + raise Webfinger::RedirectError, "Too many webfinger redirects for URI #{@uri} (stopped at #{@username}@#{@domain})" end raise Error, "Webfinger response for #{@username}@#{@domain} does not loop back to #{@uri}" if webfinger.link('self', 'href') != @uri |