use .presence rather than DIY checking

This commit is contained in:
Jay Pfaffman 2017-01-11 12:55:25 -08:00
parent e307bbccf9
commit ffbaf374c8
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ class ImportScripts::Bbpress < ImportScripts::Base
id: u["id"].to_i,
username: u["user_nicename"],
email: u["user_email"].downcase,
name: u["display_name"].length > 0 ? u["display_name"] : u['user_nicename'],
name: u["display_name"].presence || u['user_nicename'],
created_at: u["user_registered"],
website: u["user_url"],
bio_raw: users_description[u["id"]],