This commit is contained in:
Jamie.Rees 2017-03-10 09:07:56 +00:00
parent a130abcc71
commit beed3e858b

View file

@ -982,7 +982,7 @@ namespace Ombi.UI.Modules
return
Response.AsJson(new JsonResponseModel
{
Message = "Could not add movie, please contac your administrator",
Message = "Could not add movie, please contact your administrator",
Result = false
});
}
@ -1420,9 +1420,7 @@ namespace Ombi.UI.Modules
private bool ShouldSendNotification(RequestType type, PlexRequestSettings prSettings)
{
var sendNotification = ShouldAutoApprove(type)
? !prSettings.IgnoreNotifyForAutoApprovedRequests
: true;
var sendNotification = !ShouldAutoApprove(type) || !prSettings.IgnoreNotifyForAutoApprovedRequests;
if (IsAdmin)
{