about summary refs log tree commit diff
path: root/app/models
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/models
parenta6564d56d6af0467eb8cfa96444b4503f437e0a6 (diff)
Fix nil error when removing status caused by race condition (#16099)
Diffstat (limited to 'app/models')
-rw-r--r--app/models/status.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/models/status.rb b/app/models/status.rb
index 74e81f612..847921ac2 100644
--- a/app/models/status.rb
+++ b/app/models/status.rb
@@ -161,6 +161,10 @@ class Status < ApplicationRecord
     attributes['local'] || uri.nil?
   end
 
+  def in_reply_to_local_account?
+    reply? && thread&.account&.local?
+  end
+
   def reblog?
     !reblog_of_id.nil?
   end