1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-03-05 13:21:25 -05:00

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

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'");
}
}