about summary refs log tree commit diff
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2022-11-04 13:19:57 +0100
committerGitHub <noreply@github.com>2022-11-04 13:19:57 +0100
commitb8f6f039563044764336d4c62d87b1d5442d7c8b (patch)
tree8d7d928fd6940de9e50ea0d841aa9930466d49ed
parent4fb0aae636316e79b3c13c4000fda7765fa9474f (diff)
Fix /users/:username/statuses/:id leading to a soft 404 in web app (#19724)
-rw-r--r--config/routes.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb
index f24d539ba..800db96c8 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -81,6 +81,7 @@ Rails.application.routes.draw do
   }
 
   get '/users/:username', to: redirect('/@%{username}'), constraints: lambda { |req| req.format.nil? || req.format.html? }
+  get '/users/:username/statuses/:id', to: redirect('/@%{username}/%{id}'), constraints: lambda { |req| req.format.nil? || req.format.html? }
   get '/authorize_follow', to: redirect { |_, request| "/authorize_interaction?#{request.params.to_query}" }
 
   resources :accounts, path: 'users', only: [:show], param: :username do