mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 02:26:55 -07:00
Fixed an issue where if you have only 1 plex friend it would not show in the list
This commit is contained in:
parent
3032c4fed3
commit
605878700d
1 changed files with 1 additions and 1 deletions
|
@ -161,7 +161,7 @@
|
|||
$('#users').append("<option>Error!</option>");
|
||||
return;
|
||||
}
|
||||
if (response.users.length > 1) {
|
||||
if (response.users.length > 0) {
|
||||
$(response.users).each(function () {
|
||||
$('#users').append("<option>" + this + "</option>");
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue