Added check to FeedManager if group_id is present

• Added:
- check to FeedManager if group_id is present
This commit is contained in:
mgabdev 2020-08-19 17:36:10 -05:00
parent 7e81b2e132
commit 8a096e1f52

View File

@ -178,6 +178,8 @@ class FeedManager
should_filter ||= AccountDomainBlock.where(account_id: receiver_id, domain: status.reblog.account.domain).exists? # or the author's domain is blocked
return should_filter
end
return false if status.group_id
false
end