From: Darius Kazemi Date: Thu, 7 Nov 2019 19:51:48 +0000 (-0800) Subject: Fix type mismatch (#12324) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=0092096328bcde6f90f965c7e22e5db763732053;p=mastodon.git Fix type mismatch (#12324) This was [causing an issue with feed regeneartion in tootctl](https://github.com/hometown-fork/hometown/issues/24), and @davefp fixed the issue. --- diff --git a/app/lib/feed_manager.rb b/app/lib/feed_manager.rb index d8b486b60..3f167f0d8 100644 --- a/app/lib/feed_manager.rb +++ b/app/lib/feed_manager.rb @@ -153,7 +153,7 @@ class FeedManager crutches = build_crutches(account.id, statuses) statuses.each do |status| - next if filter_from_home?(status, account, crutches) + next if filter_from_home?(status, account.id, crutches) add_to_feed(:home, account.id, status, aggregate) end