Skip to content
Snippets Groups Projects
Commit bd367918 authored by ThibG's avatar ThibG Committed by Eugen Rochko
Browse files

Do not override timestamps for incoming toots (#7326)

parent 28b366d0
No related branches found
No related tags found
1 merge request!8WIP: Backport from Mastodon FE main to support the "Direct messages" column and Lists
......@@ -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
......@@ -6,6 +6,6 @@ class ProcessingWorker
sidekiq_options backtrace: true
def perform(account_id, body)
ProcessFeedService.new.call(body, Account.find(account_id), override_timestamps: true)
ProcessFeedService.new.call(body, Account.find(account_id))
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment