diff --git a/script/import_scripts/vbulletin.rb b/script/import_scripts/vbulletin.rb index 5b755156d70..a3543c8b081 100644 --- a/script/import_scripts/vbulletin.rb +++ b/script/import_scripts/vbulletin.rb @@ -12,6 +12,8 @@ class ImportScripts::VBulletin < ImportScripts::Base def initialize super + @old_username_to_new_usernames = {} + @tz = TZInfo::Timezone.get(TIMEZONE) @htmlentities = HTMLEntities.new @@ -54,8 +56,6 @@ class ImportScripts::VBulletin < ImportScripts::Base def import_users puts "", "importing users" - @old_username_to_new_usernames = {} - user_count = mysql_query("SELECT COUNT(userid) count FROM user").first["count"] # TODO: add email back in when using real data @@ -303,6 +303,8 @@ class ImportScripts::VBulletin < ImportScripts::Base post.raw = new_raw post.save end + rescue PrettyText::JavaScriptError + nil ensure print_status(current += 1, max) end