mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 15:48:43 -05:00
Added location.present? test to user profile updating.
This commit is contained in:
parent
9b9bd9c0a1
commit
6030fe1f9d
1 changed files with 1 additions and 1 deletions
|
@ -299,7 +299,7 @@ class ImportScripts::Base
|
|||
begin
|
||||
User.transaction do
|
||||
u.save!
|
||||
if bio_raw.present? || website.present?
|
||||
if bio_raw.present? || website.present? || location.present?
|
||||
u.user_profile.bio_raw = bio_raw if bio_raw.present?
|
||||
u.user_profile.website = website if website.present?
|
||||
u.user_profile.location = location if location.present?
|
||||
|
|
Loading…
Reference in a new issue