From: Ben Lubar Date: Sun, 21 Apr 2019 02:53:24 +0000 (-0500) Subject: Default to the web domain (eg. mastodon.lubar.me) instead of the local domain (eg... X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=be8692b938cb354923288af513ceef932ca27760;p=mastodon.git Default to the web domain (eg. mastodon.lubar.me) instead of the local domain (eg. lubar.me) for keybase proofs (#10565) --- diff --git a/app/lib/proof_provider/keybase.rb b/app/lib/proof_provider/keybase.rb index 9680b90ee..8e51d7146 100644 --- a/app/lib/proof_provider/keybase.rb +++ b/app/lib/proof_provider/keybase.rb @@ -2,7 +2,7 @@ class ProofProvider::Keybase BASE_URL = ENV.fetch('KEYBASE_BASE_URL', 'https://keybase.io') - DOMAIN = ENV.fetch('KEYBASE_DOMAIN', Rails.configuration.x.local_domain) + DOMAIN = ENV.fetch('KEYBASE_DOMAIN', Rails.configuration.x.web_domain) class Error < StandardError; end