From 0892f20298ff37ae9cfb90266842ffdc14453269 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20Stiki=C4=87?= Date: Fri, 7 Jul 2017 00:48:46 +0800 Subject: [PATCH] Fixed: Old Plex ValidationFailure message (#1770) --- src/NzbDrone.Core/Notifications/Plex/PlexServerService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Notifications/Plex/PlexServerService.cs b/src/NzbDrone.Core/Notifications/Plex/PlexServerService.cs index cb58e9040..c2d0e9e80 100644 --- a/src/NzbDrone.Core/Notifications/Plex/PlexServerService.cs +++ b/src/NzbDrone.Core/Notifications/Plex/PlexServerService.cs @@ -203,7 +203,7 @@ namespace NzbDrone.Core.Notifications.Plex if (sections.Empty()) { - return new ValidationFailure("Host", "At least one TV library is required"); + return new ValidationFailure("Host", "At least one movie library is required"); } } catch(PlexAuthenticationException ex)