about summary refs log tree commit diff
path: root/app/workers/activitypub/processing_worker.rb
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2018-05-03 11:42:52 +0200
committerEugen Rochko <eugen@zeonfederated.com>2018-05-03 11:42:52 +0200
commitbd367918328daedb37f49727f4e16e33679fdb15 (patch)
treee6f751506942572d8c655024ef1ffb792a50d448 /app/workers/activitypub/processing_worker.rb
parent28b366d065931507114faf2561990d67eab4981f (diff)
Do not override timestamps for incoming toots (#7326)
Diffstat (limited to 'app/workers/activitypub/processing_worker.rb')
-rw-r--r--app/workers/activitypub/processing_worker.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/workers/activitypub/processing_worker.rb b/app/workers/activitypub/processing_worker.rb
index 0e2e0eddd..bb9adf64b 100644
--- a/app/workers/activitypub/processing_worker.rb
+++ b/app/workers/activitypub/processing_worker.rb
@@ -6,6 +6,6 @@ class ActivityPub::ProcessingWorker
   sidekiq_options backtrace: true
 
   def perform(account_id, body)
-    ActivityPub::ProcessCollectionService.new.call(body, Account.find(account_id), override_timestamps: true)
+    ActivityPub::ProcessCollectionService.new.call(body, Account.find(account_id))
   end
 end