mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-31 12:10:19 -07:00
Clarified error message in MatchesFolderSpecification.
This commit is contained in:
parent
79c565911c
commit
c29e49da95
1 changed files with 2 additions and 2 deletions
|
@ -54,10 +54,10 @@ namespace NzbDrone.Core.MediaFiles.EpisodeImport.Specifications
|
||||||
|
|
||||||
if (unexpected.Count == 1)
|
if (unexpected.Count == 1)
|
||||||
{
|
{
|
||||||
return Decision.Reject("Episode Number {0} was unexpected", unexpected.First());
|
return Decision.Reject("Episode Number {0} was unexpected considering the {1} folder name", unexpected.First(), dirInfo.Name);
|
||||||
}
|
}
|
||||||
|
|
||||||
return Decision.Reject("Episode Numbers {0} were unexpected", string.Join(", ", unexpected));
|
return Decision.Reject("Episode Numbers {0} were unexpected considering the {1} folder name", string.Join(", ", unexpected), dirInfo.Name);
|
||||||
}
|
}
|
||||||
|
|
||||||
return Decision.Accept();
|
return Decision.Accept();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue