Fix regex for movies released after 2019

This commit is contained in:
Bond_009 2020-01-11 00:23:14 +01:00
parent dd7feacd34
commit 801c356d66
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ namespace Emby.Naming.Common
CleanDateTimes = new[]
{
@"(.+[^_\,\.\(\)\[\]\-])[_\.\(\)\[\]\-](19[0-9][0-9]|20[0-1][0-9])([ _\,\.\(\)\[\]\-][^0-9]|).*(19[0-9][0-9]|20[0-1][0-9])*"
@"(.+[^_\,\.\(\)\[\]\-])[_\.\(\)\[\]\-](\d{4})([ _\,\.\(\)\[\]\-][^\d]|).*(\d{4})*"
};
CleanStrings = new[]