0
0
Fork 0

Bump version, improve how version is stored for better commit history (#2526)

This commit is contained in:
Eugen Rochko 2017-04-27 15:22:19 +02:00 committed by GitHub
parent b48f2cbc8b
commit b48c9013aa
4 changed files with 30 additions and 4 deletions

View file

@ -1,7 +1,7 @@
# frozen_string_literal: true
module HttpHelper
USER_AGENT = "#{HTTP::Request::USER_AGENT} (Mastodon/#{Mastodon::VERSION}; +http://#{Rails.configuration.x.local_domain}/)"
USER_AGENT = "#{HTTP::Request::USER_AGENT} (Mastodon/#{Mastodon::Version}; +http://#{Rails.configuration.x.local_domain}/)"
def http_client(options = {})
timeout = { write: 10, connect: 10, read: 10 }.merge(options)