mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 15:06:26 +08:00
Don't update the current ip to an empty string
This commit is contained in:
parent
60ccb5ecf5
commit
74220b4194
|
@ -21,7 +21,7 @@ module CurrentUser
|
|||
@not_logged_in = session[:current_user_id].blank?
|
||||
if @current_user
|
||||
@current_user.update_last_seen!
|
||||
if @current_user.ip_address != request.remote_ip
|
||||
if (@current_user.ip_address != request.remote_ip) and request.remote_ip.present?
|
||||
@current_user.ip_address = request.remote_ip
|
||||
@current_user.update_column(:ip_address, request.remote_ip)
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue
Block a user