about summary refs log tree commit diff
path: root/app/controllers/intents_controller.rb
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2018-08-18 18:22:54 +0200
committerGitHub <noreply@github.com>2018-08-18 18:22:54 +0200
commit44e31c3e531e5c206003b7ed83ee1d6fdd3b2b53 (patch)
treee9d1366c30b94df21ec767276fbde175428399fb /app/controllers/intents_controller.rb
parent7423c0c1308555db3072ae64141250fdd33ce235 (diff)
parentbfeac6747a58b660f0d1b3766c7cfb3ea2655fce (diff)
Merge pull request #649 from ThibG/glitch-soc/merge-upstream
Merge upstream changes
Diffstat (limited to 'app/controllers/intents_controller.rb')
-rw-r--r--app/controllers/intents_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/intents_controller.rb b/app/controllers/intents_controller.rb
index 56129d69a..9f41cf48a 100644
--- a/app/controllers/intents_controller.rb
+++ b/app/controllers/intents_controller.rb
@@ -8,7 +8,7 @@ class IntentsController < ApplicationController
     if uri.scheme == 'web+mastodon'
       case uri.host
       when 'follow'
-        return redirect_to authorize_follow_path(acct: uri.query_values['uri'].gsub(/\Aacct:/, ''))
+        return redirect_to authorize_interaction_path(uri: uri.query_values['uri'].gsub(/\Aacct:/, ''))
       when 'share'
         return redirect_to share_path(text: uri.query_values['text'])
       end