logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: 0afed995ce60dec11bc7718f83ca5afde86f6228
parent: 6331ed16e5953e3a006896c6df07b0f82cfd2350
Author: Eugen Rochko <eugen@zeonfederated.com>
Date:   Thu,  9 Feb 2017 21:22:49 +0100

Fix the fix

Diffstat:

Mapp/models/status.rb2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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?