Fixed: Skip parsing releases without title

(cherry picked from commit c7824bb593291634bf14a5f7aa689666969b03bf)
This commit is contained in:
Bogdan
2023-09-19 07:05:28 +03:00
parent 419f790d66
commit ca0c95a2d2
3 changed files with 16 additions and 3 deletions
@@ -162,7 +162,7 @@ namespace NzbDrone.Common.Extensions
{
if (text.IsNullOrWhiteSpace())
{
throw new ArgumentNullException("text");
throw new ArgumentNullException(nameof(text));
}
return text.IndexOfAny(Path.GetInvalidPathChars()) >= 0;