From 7289ac765c78a9f31810b9cbe17cc7cf40b0f0cd Mon Sep 17 00:00:00 2001 From: tidusjar Date: Mon, 1 Mar 2021 14:15:26 +0000 Subject: [PATCH] Fixed an issue where we were not notifying the user who reported the issue on the resolved notification --- src/Ombi/Controllers/V1/IssuesController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ombi/Controllers/V1/IssuesController.cs b/src/Ombi/Controllers/V1/IssuesController.cs index 4dfd3781a..dccceea3a 100644 --- a/src/Ombi/Controllers/V1/IssuesController.cs +++ b/src/Ombi/Controllers/V1/IssuesController.cs @@ -316,7 +316,7 @@ namespace Ombi.Controllers.V1 ? issue.UserReported.Email : string.Empty, AdditionalInformation = $"{issue.Subject} | {issue.Description}", - UserId = user.Id, + UserId = issue.UserReported.Id, // This is a resolved notification, so needs to go to the user who raised it }; AddIssueNotificationSubstitutes(notificationModel, issue, issue.UserReported?.UserAlias ?? string.Empty);