FIX: Search wasn't using the lowercase username for finding the context.

This commit is contained in:
Robin Ward 2013-06-10 10:42:06 -04:00
parent ad6705cca7
commit 3b7d3aa487

View file

@ -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