0
0
Fork 0

User agent for WebFinger (#7531)

* User agent for WebFinger

* local_domain → web_domain

* 'http' is away accidentally...
This commit is contained in:
MIYAGI Hikaru 2018-05-18 08:47:22 +09:00 committed by Eugen Rochko
parent 7293b9fc61
commit 919eef3098
3 changed files with 7 additions and 6 deletions

View file

@ -58,7 +58,7 @@ class Request
def set_common_headers!
@headers[REQUEST_TARGET] = "#{@verb} #{@url.path}"
@headers['User-Agent'] = user_agent
@headers['User-Agent'] = Mastodon::Version.user_agent
@headers['Host'] = @url.host
@headers['Date'] = Time.now.utc.httpdate
@headers['Accept-Encoding'] = 'gzip' if @verb != :head
@ -83,10 +83,6 @@ class Request
@headers.keys.join(' ').downcase
end
def user_agent
@user_agent ||= "#{HTTP::Request::USER_AGENT} (Mastodon/#{Mastodon::Version}; +#{root_url})"
end
def key_id
case @key_id_format
when :acct