Fix for additional users

Return all users, not just public users
This commit is contained in:
angelblue05 2018-09-14 22:58:23 -05:00
parent cc87cabc50
commit 223818a807
1 changed files with 2 additions and 5 deletions

View File

@ -101,11 +101,8 @@ def artwork(item_id, art, max_width, ext="jpg", index=None):
#################################################################################################
def get_users(disabled=False, hidden=False):
return _get("Users", params={
'IsDisabled': disabled,
'IsHidden': hidden
})
def get_users():
return _get("Users")
def get_public_users():
return _get("Users/Public")