#1460 looks like the permissions issue has been resolved. Just need to make sure the Ombi process is terminated.

Also fixed that we were not sending email notifications to users when something was available.
This commit is contained in:
Jamie.Rees 2017-10-18 11:46:59 +01:00
parent 22a0e92b63
commit c58cb4dbe1
6 changed files with 22 additions and 9 deletions

View file

@ -57,7 +57,7 @@ namespace Ombi.Notifications.Agents
{
Message = html,
Subject = parsed.Subject,
To = settings.AdminEmail,
To = model.Recipient.HasValue() ? model.Recipient : settings.AdminEmail,
};
return message;