Fix error and incorrect URLs in /api/v1/accounts/:id/featured_tags for remote accounts (#27459)

This commit is contained in:
Claire
2023-10-27 10:35:21 +02:00
parent 3ef0a19bac
commit ff3a9dad0d
3 changed files with 54 additions and 2 deletions

View File

@@ -126,7 +126,7 @@ Rails.application.routes.draw do
get '/@:account_username/:id/embed', to: 'statuses#embed', as: :embed_short_account_status
end
get '/@:username_with_domain/(*any)', to: 'home#index', constraints: { username_with_domain: /([^\/])+?/ }, format: false
get '/@:username_with_domain/(*any)', to: 'home#index', constraints: { username_with_domain: %r{([^/])+?} }, as: :account_with_domain, format: false
get '/settings', to: redirect('/settings/profile')
namespace :settings do