diff options
author | Holly 'Frinkel' Lotor <admin@frinkel.tech> | 2020-01-20 17:59:14 +0000 |
---|---|---|
committer | Holly 'Frinkel' Lotor <admin@frinkel.tech> | 2020-01-20 16:57:59 -0500 |
commit | e37c5a967af4b9c4338df709646375ea427f157e (patch) | |
tree | b9dd23eb903be034cb8ac47cde0c6285511faea7 /app/services | |
parent | 259f0b15fc10470c00c57d88aec07617b5ee6ece (diff) |
More smoke testing, merge in request pool from upstream
Diffstat (limited to 'app/services')
-rw-r--r-- | app/services/resolve_url_service.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/resolve_url_service.rb b/app/services/resolve_url_service.rb index bab420945..65b6ffd61 100644 --- a/app/services/resolve_url_service.rb +++ b/app/services/resolve_url_service.rb @@ -21,7 +21,7 @@ class ResolveURLService < BaseService if equals_or_includes_any?(type, ActivityPub::FetchRemoteAccountService::SUPPORTED_TYPES) FetchRemoteAccountService.new.call(resource_url, body) elsif equals_or_includes_any?(type, ActivityPub::Activity::Create::SUPPORTED_TYPES + ActivityPub::Activity::Create::CONVERTED_TYPES) - status = FetchRemoteStatusService.new.call(atom_url, body, requested: true) + status = FetchRemoteStatusService.new.call(resource_url, body, requested: true) authorize_with @on_behalf_of, status, :show? unless status.nil? status end |