mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-18 20:39:32 +00:00
Fix delete of local reply to local parent not being forwarded (#16096)
This commit is contained in:
parent
3230c244f9
commit
2eb17360df
|
@ -62,7 +62,11 @@ class StatusReachFinder
|
||||||
end
|
end
|
||||||
|
|
||||||
def followers_inboxes
|
def followers_inboxes
|
||||||
@status.account.followers.inboxes
|
if @status.reply? && @status.thread.account.local? && @status.distributable?
|
||||||
|
@status.account.followers.or(@status.thread.account.followers).inboxes
|
||||||
|
else
|
||||||
|
@status.account.followers.inboxes
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def relay_inboxes
|
def relay_inboxes
|
||||||
|
|
Loading…
Reference in a new issue