diff --git a/src/NzbDrone.Core/Notifications/Gotify/Gotify.cs b/src/NzbDrone.Core/Notifications/Gotify/Gotify.cs index 37250eb86d..9973cf2802 100644 --- a/src/NzbDrone.Core/Notifications/Gotify/Gotify.cs +++ b/src/NzbDrone.Core/Notifications/Gotify/Gotify.cs @@ -91,7 +91,7 @@ public override ValidationResult Test() if (Settings.IncludeInstanceNameInTitle && _configFileProvider.InstanceName.IsNotNullOrWhiteSpace()) { - title = $"{title} - {_configFileProvider.InstanceName}"; + title += $" - {_configFileProvider.InstanceName}"; } var payload = new GotifyMessage @@ -140,7 +140,7 @@ private void SendNotification(string title, string message, Movie movie) if (Settings.IncludeInstanceNameInTitle && _configFileProvider.InstanceName.IsNotNullOrWhiteSpace()) { - title = $"{title} - {_configFileProvider.InstanceName}"; + title += $" - {_configFileProvider.InstanceName}"; } var payload = new GotifyMessage