From e8ca64fabc190c72ba03a7daba1f51abc430c931 Mon Sep 17 00:00:00 2001 From: Daniel Date: Sun, 6 Apr 2025 14:41:28 +0200 Subject: [PATCH] Fix typo in IMDb List validation message (#11024) --- .../ImportLists/RadarrList2/IMDb/IMDbListSettings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/ImportLists/RadarrList2/IMDb/IMDbListSettings.cs b/src/NzbDrone.Core/ImportLists/RadarrList2/IMDb/IMDbListSettings.cs index 7547733f27..7cf18332b7 100644 --- a/src/NzbDrone.Core/ImportLists/RadarrList2/IMDb/IMDbListSettings.cs +++ b/src/NzbDrone.Core/ImportLists/RadarrList2/IMDb/IMDbListSettings.cs @@ -10,7 +10,7 @@ public IMDbSettingsValidator() { 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'"); } }