mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-30 10:58:31 -05:00
FIX: vBulletin wasn't importing posters...
This commit is contained in:
parent
7dd6b43e8a
commit
841d547a48
1 changed files with 1 additions and 1 deletions
|
@ -446,7 +446,7 @@ class ImportScripts::VBulletin < ImportScripts::Base
|
||||||
|
|
||||||
p = {
|
p = {
|
||||||
id: post[:postid],
|
id: post[:postid],
|
||||||
user_id: user_id_from_imported_user_id(post[:postuserid]) || Discourse::SYSTEM_USER_ID,
|
user_id: user_id_from_imported_user_id(post[:userid]) || Discourse::SYSTEM_USER_ID,
|
||||||
topic_id: t[:topic_id],
|
topic_id: t[:topic_id],
|
||||||
raw: post[:raw],
|
raw: post[:raw],
|
||||||
created_at: Time.at(post[:dateline].to_i),
|
created_at: Time.at(post[:dateline].to_i),
|
||||||
|
|
Loading…
Reference in a new issue