mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
Fix: messages imported in wrong order
This commit is contained in:
parent
b11b5cb61b
commit
b075b9937f
1 changed files with 1 additions and 1 deletions
|
@ -180,7 +180,7 @@ class ImportScripts::Smf2 < ImportScripts::Base
|
|||
topics = Enumerator.new do |y|
|
||||
last_topic_id = nil
|
||||
topic_messages = nil
|
||||
query("SELECT id_msg, id_topic, body FROM {prefix}messages ORDER BY id_topic ASC, poster_time ASC") do |message|
|
||||
query("SELECT id_msg, id_topic, body FROM {prefix}messages ORDER BY id_topic ASC, id_msg ASC") do |message|
|
||||
if last_topic_id != message[:id_topic]
|
||||
y << topic_messages
|
||||
last_topic_id = message[:id_topic]
|
||||
|
|
Loading…
Reference in a new issue