Fix tagged
param not being normalized before querying tags (#10249)
This commit is contained in:
@ -14,7 +14,7 @@ class Api::V1::Timelines::TagController < Api::BaseController
|
||||
private
|
||||
|
||||
def load_tag
|
||||
@tag = Tag.find_by(name: params[:id].downcase)
|
||||
@tag = Tag.find_normalized(params[:id])
|
||||
end
|
||||
|
||||
def load_statuses
|
||||
|
Reference in New Issue
Block a user