From ccff9b1b64f167532ffaf5f005cc05de1db42b3a Mon Sep 17 00:00:00 2001 From: saint Date: Sat, 17 Aug 2024 22:45:04 +1000 Subject: [PATCH] v0.42.1 Rewrite and simplication of concurrent-ruby support --- gossamer_forums.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gossamer_forums.rb b/gossamer_forums.rb index f1c5c30..3c5af7a 100644 --- a/gossamer_forums.rb +++ b/gossamer_forums.rb @@ -1280,7 +1280,7 @@ class GossamerForumsImporter < ImportScripts::Base created_at: Time.at(row['post_time']), updated_at: Time.at(row['post_time']), reads: post_views || 0, - post_number: post_number +# post_number: post_number ) post.custom_fields['original_gossamer_id'] = row['post_id'] post.save! @@ -1332,7 +1332,7 @@ class GossamerForumsImporter < ImportScripts::Base created_at: Time.at(reply_row['post_time']), updated_at: Time.at(reply_row['post_time']), reads: reply_post_views || 0, - post_number: post_number +# post_number: post_number ) post.custom_fields['original_gossamer_id'] = reply_row['post_id'] post.save!