From 0afed995ce60dec11bc7718f83ca5afde86f6228 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Thu, 9 Feb 2017 21:22:49 +0100 Subject: [PATCH] Fix the fix --- app/models/status.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/status.rb b/app/models/status.rb index c6690c312..d2be72308 100644 --- a/app/models/status.rb +++ b/app/models/status.rb @@ -176,7 +176,7 @@ class Status < ApplicationRecord text.strip! spoiler_text&.strip! - self.reply = !(in_reply_to_id.nil? && thread.nil?) unless attributes[:reply] + self.reply = !(in_reply_to_id.nil? && thread.nil?) unless reply self.reblog = reblog.reblog if reblog? && reblog.reblog? self.in_reply_to_account_id = (thread.account_id == account_id && thread.reply? ? thread.in_reply_to_account_id : thread.account_id) if reply? && !thread.nil? self.visibility = (account.locked? ? :private : :public) if visibility.nil?