From 605878700dc10792b267d5f7ac2d834e904d565e Mon Sep 17 00:00:00 2001 From: tidusjar Date: Wed, 25 May 2016 16:38:51 +0100 Subject: [PATCH] Fixed an issue where if you have only 1 plex friend it would not show in the list --- PlexRequests.UI/Views/Admin/Authentication.cshtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PlexRequests.UI/Views/Admin/Authentication.cshtml b/PlexRequests.UI/Views/Admin/Authentication.cshtml index db3fc8819..8e2d89a5a 100644 --- a/PlexRequests.UI/Views/Admin/Authentication.cshtml +++ b/PlexRequests.UI/Views/Admin/Authentication.cshtml @@ -161,7 +161,7 @@ $('#users').append(""); return; } - if (response.users.length > 1) { + if (response.users.length > 0) { $(response.users).each(function () { $('#users').append(""); });