v0.42.1 Rewrite and simplication of concurrent-ruby support

This commit is contained in:
David Sainty 2024-08-17 22:47:56 +10:00
parent ccff9b1b64
commit e217447a48

View File

@ -1279,7 +1279,7 @@ class GossamerForumsImporter < ImportScripts::Base
raw: sanitized_post_message,
created_at: Time.at(row['post_time']),
updated_at: Time.at(row['post_time']),
reads: post_views || 0,
reads: post_views || 0
# post_number: post_number
)
post.custom_fields['original_gossamer_id'] = row['post_id']
@ -1331,7 +1331,7 @@ class GossamerForumsImporter < ImportScripts::Base
raw: sanitized_reply_message,
created_at: Time.at(reply_row['post_time']),
updated_at: Time.at(reply_row['post_time']),
reads: reply_post_views || 0,
reads: reply_post_views || 0
# post_number: post_number
)
post.custom_fields['original_gossamer_id'] = reply_row['post_id']