mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-23 16:23:13 +00:00
Changed: Temp remove album folder release year requirement.
Fixes #290 until we can get rework done, forces user to ensure they are naming correctly.
This commit is contained in:
parent
ca1ef7e151
commit
e67af5e747
1 changed files with 2 additions and 2 deletions
|
@ -24,8 +24,8 @@ public static IRuleBuilderOptions<T, string> ValidArtistFolderFormat<T>(this IRu
|
|||
public static IRuleBuilderOptions<T, string> ValidAlbumFolderFormat<T>(this IRuleBuilder<T, string> ruleBuilder)
|
||||
{
|
||||
ruleBuilder.SetValidator(new NotEmptyValidator(null));
|
||||
return ruleBuilder.SetValidator(new RegularExpressionValidator(FileNameBuilder.AlbumTitleRegex)).WithMessage("Must contain Album title")
|
||||
.SetValidator(new RegularExpressionValidator(FileNameBuilder.ReleaseDateRegex)).WithMessage("Must contain Release year");
|
||||
return ruleBuilder.SetValidator(new RegularExpressionValidator(FileNameBuilder.AlbumTitleRegex)).WithMessage("Must contain Album title");
|
||||
//.SetValidator(new RegularExpressionValidator(FileNameBuilder.ReleaseDateRegex)).WithMessage("Must contain Release year");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue