diff --git a/src/NzbDrone.Core/Tv/SeriesTitleSlugValidator.cs b/src/NzbDrone.Core/Tv/SeriesTitleSlugValidator.cs index fe329a698..eb3ecb69b 100644 --- a/src/NzbDrone.Core/Tv/SeriesTitleSlugValidator.cs +++ b/src/NzbDrone.Core/Tv/SeriesTitleSlugValidator.cs @@ -9,7 +9,7 @@ namespace NzbDrone.Core.Tv private readonly ISeriesService _seriesService; public SeriesTitleSlugValidator(ISeriesService seriesService) - : base("Title slug '{slug}' is in use by series '{seriesTitle}'") + : base("Title slug '{slug}' is in use by series '{seriesTitle}'. Check the FAQ for more information") { _seriesService = seriesService; }