Browse Source

Fix the fix

closed-social-glitch-2
Eugen Rochko 7 years ago
parent
commit
0afed995ce
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/models/status.rb

+ 1
- 1
app/models/status.rb View File

@ -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?

Loading…
Cancel
Save