From 54e6aa06e5626f0219215c609ed44f6b56415a27 Mon Sep 17 00:00:00 2001 From: MomentQYC <62551256+MomentQYC@users.noreply.github.com> Date: Wed, 6 Nov 2024 09:58:38 +0800 Subject: [PATCH] fix: Use maintainerEmail instead of email for incoming mail --- packages/backend/src/core/AbuseReportNotificationService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/backend/src/core/AbuseReportNotificationService.ts b/packages/backend/src/core/AbuseReportNotificationService.ts index 25e265f2b1..743f888467 100644 --- a/packages/backend/src/core/AbuseReportNotificationService.ts +++ b/packages/backend/src/core/AbuseReportNotificationService.ts @@ -103,7 +103,7 @@ export class AbuseReportNotificationService implements OnApplicationShutdown { ); recipientEMailAddresses.push( - ...(this.meta.email ? [this.meta.email] : []), + ...(this.meta.maintainerEmail ? [this.meta.maintainerEmail] : []), ); if (recipientEMailAddresses.length <= 0) {