Fixed: Ignore releases without title

This commit is contained in:
Bogdan
2023-09-19 00:56:10 +03:00
parent 43cb22ff2b
commit 4c8b0c9eec
2 changed files with 14 additions and 2 deletions
@@ -160,7 +160,7 @@ namespace NzbDrone.Common.Extensions
{
if (text.IsNullOrWhiteSpace())
{
throw new ArgumentNullException("text");
throw new ArgumentNullException(nameof(text));
}
return text.IndexOfAny(Path.GetInvalidPathChars()) >= 0;