diff options
author | Eugen <eugen@zeonfederated.com> | 2017-04-05 03:18:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-05 03:18:42 +0200 |
commit | bdaf31bcc91d309d667b173bfa660f74d5569474 (patch) | |
tree | c36c6c1f2bbc52e5e1d3067db2fbdb202bc1626b /app/controllers | |
parent | 58bdb9b42ee90ca2723ac28c0f45af40df1c6383 (diff) | |
parent | 086a88f3bb3e09ade9d5659d60e5b0445b30dbed (diff) |
Merge branch 'master' into patch-1
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/remote_follow_controller.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/controllers/remote_follow_controller.rb b/app/controllers/remote_follow_controller.rb index 7d4bfe6ce..1e3f786ec 100644 --- a/app/controllers/remote_follow_controller.rb +++ b/app/controllers/remote_follow_controller.rb @@ -8,6 +8,7 @@ class RemoteFollowController < ApplicationController def new @remote_follow = RemoteFollow.new + @remote_follow.acct = session[:remote_follow] if session.key?(:remote_follow) end def create @@ -22,6 +23,8 @@ class RemoteFollowController < ApplicationController render(:new) && return end + session[:remote_follow] = @remote_follow.acct + redirect_to Addressable::Template.new(redirect_url_link.template).expand(uri: "#{@account.username}@#{Rails.configuration.x.local_domain}").to_s else render :new |