Procházet zdrojové kódy

Fix auto-report string saying the account has been auto-silenced (#12142)

master^2
Eugen Rochko před 4 roky
committed by GitHub
rodič
revize
aa509a3d8a
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: 4AEE18F83AFDEB23
2 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. +1
    -1
      app/lib/spam_check.rb
  2. +1
    -1
      config/locales/en.yml

+ 1
- 1
app/lib/spam_check.rb Zobrazit soubor

@@ -135,7 +135,7 @@ class SpamCheck

def auto_report_status!
status_ids = Status.where(visibility: %i(public unlisted)).where(id: matching_status_ids).pluck(:id) + [@status.id] if @status.distributable?
ReportService.new.call(Account.representative, @account, status_ids: status_ids, comment: I18n.t('spam_check.spam_detected_and_silenced'))
ReportService.new.call(Account.representative, @account, status_ids: status_ids, comment: I18n.t('spam_check.spam_detected'))
end

def already_flagged?


+ 1
- 1
config/locales/en.yml Zobrazit soubor

@@ -1009,7 +1009,7 @@ en:
relationships: Follows and followers
two_factor_authentication: Two-factor Auth
spam_check:
spam_detected_and_silenced: This is an automated report. Spam has been detected and the sender has been silenced automatically. If this is a mistake, please unsilence the account.
spam_detected: This is an automated report. Spam has been detected.
statuses:
attached:
description: 'Attached: %{attached}'


Načítá se…
Zrušit
Uložit