about summary refs log tree commit diff
path: root/app/lib
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2021-04-24 13:35:39 +0200
committerGitHub <noreply@github.com>2021-04-24 13:35:39 +0200
commitf4b7c6b61914070e590507bcb33e4345d3f9b0b9 (patch)
tree3db8d2c42a5ab005b7fc11eb34545e9a360ed0fd /app/lib
parenta6564d56d6af0467eb8cfa96444b4503f437e0a6 (diff)
Fix nil error when removing status caused by race condition (#16099)
Diffstat (limited to 'app/lib')
-rw-r--r--app/lib/status_reach_finder.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/lib/status_reach_finder.rb b/app/lib/status_reach_finder.rb
index 0e755d433..735d66a4f 100644
--- a/app/lib/status_reach_finder.rb
+++ b/app/lib/status_reach_finder.rb
@@ -62,7 +62,7 @@ class StatusReachFinder
   end
 
   def followers_inboxes
-    if @status.reply? && @status.thread.account.local? && @status.distributable?
+    if @status.in_reply_to_local_account? && @status.distributable?
       @status.account.followers.or(@status.thread.account.followers).inboxes
     else
       @status.account.followers.inboxes