From 64f533db99bca433b755bff9773dad9dbc5cae16 Mon Sep 17 00:00:00 2001 From: Mohammad AlTawil Date: Tue, 31 Jul 2018 07:43:16 +0300 Subject: [PATCH] Add display name to user (#6198) --- script/bulk_import/vbulletin.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/script/bulk_import/vbulletin.rb b/script/bulk_import/vbulletin.rb index 830c330e939..bde627df94c 100644 --- a/script/bulk_import/vbulletin.rb +++ b/script/bulk_import/vbulletin.rb @@ -97,6 +97,7 @@ class BulkImport::VBulletin < BulkImport::Base u = { imported_id: row[0], username: normalize_text(row[1]), + name: normalize_text(row[1]), created_at: Time.zone.at(row[3]), date_of_birth: parse_birthday(row[4]), primary_group_id: group_id_from_imported_id(row[6]),