From beed3e858b12ce397f19839d2359154ac780e653 Mon Sep 17 00:00:00 2001 From: "Jamie.Rees" Date: Fri, 10 Mar 2017 09:07:56 +0000 Subject: [PATCH] oops #1134 --- Ombi.UI/Modules/SearchModule.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Ombi.UI/Modules/SearchModule.cs b/Ombi.UI/Modules/SearchModule.cs index 7047feaef..dcc2b13d2 100644 --- a/Ombi.UI/Modules/SearchModule.cs +++ b/Ombi.UI/Modules/SearchModule.cs @@ -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) {