summaryrefslogtreecommitdiff
path: root/internal/processing/workers
diff options
context:
space:
mode:
authorLibravatar tobi <31960611+tsmethurst@users.noreply.github.com>2024-05-27 12:27:49 +0200
committerLibravatar GitHub <noreply@github.com>2024-05-27 12:27:49 +0200
commit5bee30d60cc51c6cae9f70dfcf08dff6cdb4b08e (patch)
treeb06417b2810c43af5a1d77a376d815431c9f7186 /internal/processing/workers
parent[chore]: Bump github.com/tdewolff/minify/v2 from 2.20.25 to 2.20.32 (#2927) (diff)
downloadgotosocial-5bee30d60cc51c6cae9f70dfcf08dff6cdb4b08e.tar.xz
[chore] Fix report email link (#2932)
Diffstat (limited to 'internal/processing/workers')
-rw-r--r--internal/processing/workers/surfaceemail.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/processing/workers/surfaceemail.go b/internal/processing/workers/surfaceemail.go
index 9d46ff45e..5f8ae1823 100644
--- a/internal/processing/workers/surfaceemail.go
+++ b/internal/processing/workers/surfaceemail.go
@@ -216,7 +216,7 @@ func (s *Surface) emailAdminReportOpened(ctx context.Context, report *gtsmodel.R
reportData := email.NewReportData{
InstanceURL: instance.URI,
InstanceName: instance.Title,
- ReportURL: instance.URI + "/settings/admin/reports/" + report.ID,
+ ReportURL: instance.URI + "/settings/moderation/reports/" + report.ID,
ReportDomain: report.Account.Domain,
ReportTargetDomain: report.TargetAccount.Domain,
}