Rename ResolveRemoteAccountService to ResolveAccountService (#6327)
The service used to be named ResolveRemoteAccountService resolves local accounts as well.
This commit is contained in:
parent
17cecd75ca
commit
613e7c7521
17 changed files with 26 additions and 26 deletions
|
@ -16,7 +16,7 @@ class ProcessMentionsService < BaseService
|
|||
|
||||
if mention_undeliverable?(status, mentioned_account)
|
||||
begin
|
||||
mentioned_account = resolve_remote_account_service.call($1)
|
||||
mentioned_account = resolve_account_service.call($1)
|
||||
rescue Goldfinger::Error, HTTP::Error
|
||||
mentioned_account = nil
|
||||
end
|
||||
|
@ -63,7 +63,7 @@ class ProcessMentionsService < BaseService
|
|||
).as_json).sign!(status.account))
|
||||
end
|
||||
|
||||
def resolve_remote_account_service
|
||||
ResolveRemoteAccountService.new
|
||||
def resolve_account_service
|
||||
ResolveAccountService.new
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue