From 1c22d57b8eb0c62c887544593a79574f7bf74189 Mon Sep 17 00:00:00 2001 From: Alexander Standke Date: Thu, 21 May 2020 09:30:45 -0700 Subject: [PATCH] improve wording for Now Available notification template Before: Hello! Your request for The Warriors on Plex Server! This is now available! :) After: Hello! Your request for The Warriors on Plex Server is now available! :) I feel this flows better and the sentence sounds more complete. --- src/Ombi.Store/Context/OmbiContext.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ombi.Store/Context/OmbiContext.cs b/src/Ombi.Store/Context/OmbiContext.cs index 2d06d4553..90e559875 100644 --- a/src/Ombi.Store/Context/OmbiContext.cs +++ b/src/Ombi.Store/Context/OmbiContext.cs @@ -120,7 +120,7 @@ namespace Ombi.Store.Context notificationToAdd = new NotificationTemplates { NotificationType = notificationType, - Message = "Hello! Your request for {Title} on {ApplicationName}! This is now available! :)", + Message = "Hello! Your request for {Title} on {ApplicationName} is now available! :)", Subject = "{ApplicationName}: {Title} is now available!", Agent = agent, Enabled = true,