about summary refs log tree commit diff
path: root/app/controllers/tags_controller.rb
diff options
context:
space:
mode:
authorMatt Jankowski <mjankowski@thoughtbot.com>2017-04-28 09:11:21 -0400
committerEugen Rochko <eugen@zeonfederated.com>2017-04-28 15:11:21 +0200
commit429480bb775d53009e311b605a7ca73bd3acbc97 (patch)
treed44a670c2b5be92f8aa4eb6efdd9c20b44a1b9ee /app/controllers/tags_controller.rb
parent61067dc2e6105c8d4fcb8c3e864a60490c384354 (diff)
Return missing page when tag does not exist (#2563)
Diffstat (limited to 'app/controllers/tags_controller.rb')
-rw-r--r--app/controllers/tags_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/tags_controller.rb b/app/controllers/tags_controller.rb
index d99aea2eb..53149edf0 100644
--- a/app/controllers/tags_controller.rb
+++ b/app/controllers/tags_controller.rb
@@ -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