diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-08-07 21:14:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-07 21:14:08 +0200 |
commit | f51c7c105f1d04520656c1235f8a5f58d256fd0e (patch) | |
tree | 5e80a460c637b71daa7ab81f6bf7c6afde1ad5e5 /app/controllers | |
parent | 3a6b6c63f22e31c9b113428d6c69be451a3bcc17 (diff) |
Fix acct URIs with IDN domains not being resolved (#11520)
Fix #11494
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/remote_interaction_controller.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/app/controllers/remote_interaction_controller.rb b/app/controllers/remote_interaction_controller.rb index fa742fb0a..de5616e25 100644 --- a/app/controllers/remote_interaction_controller.rb +++ b/app/controllers/remote_interaction_controller.rb @@ -39,7 +39,6 @@ class RemoteInteractionController < ApplicationController @status = Status.find(params[:id]) authorize @status, :show? rescue Mastodon::NotPermittedError - # Reraise in order to get a 404 raise ActiveRecord::RecordNotFound end |