diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-02-22 18:10:30 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-02-22 18:10:30 +0100 |
commit | 1dad72bf13f5e28781a2b2b6654f72624d205576 (patch) | |
tree | 27cc73b474b1cce88751a822374431837f24309a /app/controllers | |
parent | 709c6685a90bb819696566cc9e42e587546d72dc (diff) |
Fixes and general progress
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/xrd_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/xrd_controller.rb b/app/controllers/xrd_controller.rb index 4c8e958e6..6fda75a03 100644 --- a/app/controllers/xrd_controller.rb +++ b/app/controllers/xrd_controller.rb @@ -7,7 +7,7 @@ class XrdController < ApplicationController def webfinger @account = Account.find_by!(username: username_from_resource, domain: nil) - @canonical_account_uri = "acct:#{@account.username}#{LOCAL_DOMAIN}" + @canonical_account_uri = "acct:#{@account.username}@#{LOCAL_DOMAIN}" @magic_key = pem_to_magic_key(@account.keypair.public_key) end |