mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
FIX: Search wasn't using the lowercase username for finding the context.
This commit is contained in:
@@ -22,7 +22,7 @@ class SearchController < ApplicationController
|
||||
# A user is found by username
|
||||
context_obj = nil
|
||||
if search_context[:type] == 'user'
|
||||
context_obj = klass.where(username: params[:search_context][:id]).first
|
||||
context_obj = klass.where(username_lower: params[:search_context][:id].downcase).first
|
||||
else
|
||||
context_obj = klass.where(id: params[:search_context][:id]).first
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user