@ -378,7 +378,7 @@ class AccountController < ApplicationController
us = UsersService.new
@user = us.register user_params.merge(:should_confirmation_password => false)
# 注册时,记录是否是引流用户
ip = @env['HTTP_X_REAL_IP']
ip = request.remote_ip
ua = UserAgent.find_by_id(:ip => ip)
ua.update_column(:type, UserAgent::REGISTER) if ua
if !@user.new_record?
@ -348,7 +348,7 @@ class CompetitionTeamsController < ApplicationController
def record_agent_user_action
ua.update_column(:type, UserAgent::COMPETITION) if ua
end