Skip to content
Snippets Groups Projects
Unverified Commit 01a99f7e authored by ThibG's avatar ThibG Committed by GitHub
Browse files

Fix crash in MergeWorker (#14129)

Similarly to #12324, the code is passing an Account object where an id
is expected.
parent 791402af
No related branches found
No related tags found
No related merge requests found
......@@ -106,7 +106,7 @@ class FeedManager
crutches = build_crutches(into_account.id, statuses)
statuses.each do |status|
next if filter_from_home?(status, into_account, crutches)
next if filter_from_home?(status, into_account.id, crutches)
add_to_feed(:home, into_account.id, status, aggregate)
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