Fix empty home feed before first follow has finished processing (#16152)
Change queue of merge worker from pull to default
This commit is contained in:
parent
8c44b723bb
commit
fab65848d2
4 changed files with 20 additions and 5 deletions
|
@ -184,6 +184,14 @@ module AccountInteractions
|
|||
active_relationships.where(target_account: other_account).exists?
|
||||
end
|
||||
|
||||
def following_anyone?
|
||||
active_relationships.exists?
|
||||
end
|
||||
|
||||
def not_following_anyone?
|
||||
!following_anyone?
|
||||
end
|
||||
|
||||
def blocking?(other_account)
|
||||
block_relationships.where(target_account: other_account).exists?
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue