Fix typo in IMDb List validation message (#11024)

This commit is contained in:
Daniel 2025-04-06 14:41:28 +02:00 committed by GitHub
parent c821541a2f
commit e8ca64fabc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -10,7 +10,7 @@ namespace NzbDrone.Core.ImportLists.RadarrList2.IMDbList
{
RuleFor(c => c.ListId)
.Matches(@"^top250$|^popular$|^ls\d+$|^ur\d+$")
.WithMessage("List ID mist be 'top250', 'popular', an IMDb List ID of the form 'ls12345678' or an IMDb user watchlist of the form 'ur12345678'");
.WithMessage("List ID must be 'top250', 'popular', an IMDb List ID of the form 'ls12345678' or an IMDb user watchlist of the form 'ur12345678'");
}
}