Browse Source

Fix uri expansion during remote follow

closed-social-glitch-2
Eugen Rochko 7 years ago
parent
commit
75122e162d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/controllers/remote_follow_controller.rb

+ 1
- 1
app/controllers/remote_follow_controller.rb View File

@ -22,7 +22,7 @@ class RemoteFollowController < ApplicationController
render(:new) && return
end
redirect_to Addressable::Template.new(redirect_url_link.template).expand(uri: "acct:#{@account.username}@#{Rails.configuration.x.local_domain}").to_s
redirect_to Addressable::Template.new(redirect_url_link.template).expand(uri: "#{@account.username}@#{Rails.configuration.x.local_domain}").to_s
else
render :new
end

Loading…
Cancel
Save