mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 15:16:08 +08:00
impor script fixes
This commit is contained in:
parent
811b8f3281
commit
5ddb82c9b6
|
@ -28,8 +28,8 @@ class ImportScripts::Bespoke < ImportScripts::Base
|
|||
end
|
||||
|
||||
def execute
|
||||
import_users
|
||||
import_categories
|
||||
#import_users
|
||||
#import_categories
|
||||
import_posts
|
||||
|
||||
end
|
||||
|
@ -202,18 +202,20 @@ class ImportScripts::Bespoke < ImportScripts::Base
|
|||
topic[:post_id] = post[:id]
|
||||
else
|
||||
parent = topic_lookup_from_imported_post_id(topic[:post_id])
|
||||
next unless parent
|
||||
|
||||
mapped[:topic_id] = parent[:topic_id]
|
||||
|
||||
reply_to_post_id = post_id_from_imported_post_id(post[:reply_id])
|
||||
if reply_to_post_id
|
||||
reply_to_post_number = @post_number_map[reply_to_post_id]
|
||||
if reply_to_post_number
|
||||
if reply_to_post_number && reply_to_post_number > 1
|
||||
mapped[:reply_to_post_number] = reply_to_post_number
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
return nil if topic[:deleted] or post[:deleted]
|
||||
next if topic[:deleted] or post[:deleted]
|
||||
|
||||
mapped
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue
Block a user