FIX: Direct link to Avatar

This commit is contained in:
Robin Ward 2013-08-14 12:22:44 -04:00
parent 479ca86713
commit a05ffafd4c
1 changed files with 2 additions and 1 deletions

View File

@ -320,7 +320,8 @@ class UsersController < ApplicationController
# [LEGACY] avatars in quotes/oneboxes might still be pointing to this route # [LEGACY] avatars in quotes/oneboxes might still be pointing to this route
# fixing it requires a rebake of all the posts # fixing it requires a rebake of all the posts
def avatar def avatar
user = User.select(:email).where(username_lower: params[:username].downcase).first user = User.select([:email, :use_uploaded_avatar, :uploaded_avatar_template, :uploaded_avatar_id])
.where(username_lower: params[:username].downcase).first
if user.present? if user.present?
size = determine_avatar_size(params[:size]) size = determine_avatar_size(params[:size])
url = user.avatar_template.gsub("{size}", size.to_s) url = user.avatar_template.gsub("{size}", size.to_s)