Skip to content
Snippets Groups Projects
Commit 429480bb authored by Matt Jankowski's avatar Matt Jankowski Committed by Eugen Rochko
Browse files

Return missing page when tag does not exist (#2563)

parent 61067dc2
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,7 @@ class TagsController < ApplicationController
layout 'public'
def show
@tag = Tag.find_by(name: params[:id].downcase)
@tag = Tag.find_by!(name: params[:id].downcase)
@statuses = @tag.nil? ? [] : Status.as_tag_timeline(@tag, current_account, params[:local]).paginate_by_max_id(20, params[:max_id])
@statuses = cache_collection(@statuses, Status)
end
......
......@@ -12,5 +12,11 @@ RSpec.describe TagsController, type: :controller do
get :show, params: { id: 'test' }
expect(response).to have_http_status(:success)
end
it 'returns http missing for non-existent tag' do
get :show, params: { id: 'none' }
expect(response).to have_http_status(:missing)
end
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment