2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00

Fix: messages imported in wrong order

This commit is contained in:
Jens Maier 2014-08-05 17:39:40 +02:00
parent b11b5cb61b
commit b075b9937f

View file

@ -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]