about summary refs log tree commit diff
path: root/app/views/admin_mailer
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2018-05-04 13:26:25 +0200
committerGitHub <noreply@github.com>2018-05-04 13:26:25 +0200
commit251bbf9728a310353c3957a0ad51a7f641aa0a9e (patch)
tree2f56e56d298f4e1851ac2971e44e0418ae36eb5b /app/views/admin_mailer
parenta78b27c7cce9529e49e1572ac77b6081b60003b2 (diff)
Show remote reports in admin UI as coming from domain rather than user (#7347)
Fix #6994
Diffstat (limited to 'app/views/admin_mailer')
-rw-r--r--app/views/admin_mailer/new_report.text.erb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/admin_mailer/new_report.text.erb b/app/views/admin_mailer/new_report.text.erb
index 671ae5ca7..d6c7d6bab 100644
--- a/app/views/admin_mailer/new_report.text.erb
+++ b/app/views/admin_mailer/new_report.text.erb
@@ -1,5 +1,5 @@
 <%= raw t('application_mailer.salutation', name: display_name(@me)) %>
 
-<%= raw t('admin_mailer.new_report.body', target: @report.target_account.acct, reporter: @report.account.acct) %>
+<%= raw(@report.account.local? ? t('admin_mailer.new_report.body', target: @report.target_account.acct, reporter: @report.account.acct) : t('admin_mailer.new_report.body_remote', target: @report.target_account.acct, domain: @report.account.domain)) %>
 
 <%= raw t('application_mailer.view')%> <%= admin_report_url(@report) %>