mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 10:50:21 +08:00
don't break the vBulletin importer when PrettyText times out
This commit is contained in:
parent
51827b06ac
commit
31340de446
1 changed files with 4 additions and 2 deletions
|
@ -12,6 +12,8 @@ class ImportScripts::VBulletin < ImportScripts::Base
|
||||||
def initialize
|
def initialize
|
||||||
super
|
super
|
||||||
|
|
||||||
|
@old_username_to_new_usernames = {}
|
||||||
|
|
||||||
@tz = TZInfo::Timezone.get(TIMEZONE)
|
@tz = TZInfo::Timezone.get(TIMEZONE)
|
||||||
|
|
||||||
@htmlentities = HTMLEntities.new
|
@htmlentities = HTMLEntities.new
|
||||||
|
@ -54,8 +56,6 @@ class ImportScripts::VBulletin < ImportScripts::Base
|
||||||
def import_users
|
def import_users
|
||||||
puts "", "importing users"
|
puts "", "importing users"
|
||||||
|
|
||||||
@old_username_to_new_usernames = {}
|
|
||||||
|
|
||||||
user_count = mysql_query("SELECT COUNT(userid) count FROM user").first["count"]
|
user_count = mysql_query("SELECT COUNT(userid) count FROM user").first["count"]
|
||||||
|
|
||||||
# TODO: add email back in when using real data
|
# TODO: add email back in when using real data
|
||||||
|
@ -303,6 +303,8 @@ class ImportScripts::VBulletin < ImportScripts::Base
|
||||||
post.raw = new_raw
|
post.raw = new_raw
|
||||||
post.save
|
post.save
|
||||||
end
|
end
|
||||||
|
rescue PrettyText::JavaScriptError
|
||||||
|
nil
|
||||||
ensure
|
ensure
|
||||||
print_status(current += 1, max)
|
print_status(current += 1, max)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue