mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Fix for additional users
Return all users, not just public users
This commit is contained in:
parent
cc87cabc50
commit
223818a807
1 changed files with 2 additions and 5 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue