blob: a19d06a85a10853464a3ad41b9df72e9b1a314b2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
class FeedManager
MAX_ITEMS = 800
def self.key(type, id)
"feed:#{type}:#{id}"
end
def self.filter_status?(status, follower)
replied_to_user = status.reply? ? status.thread.account : nil
(status.reply? && !(follower.id = replied_to_user.id || follower.following?(replied_to_user)))
end
end
|