mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 12:16:12 +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):
|
def get_users():
|
||||||
return _get("Users", params={
|
return _get("Users")
|
||||||
'IsDisabled': disabled,
|
|
||||||
'IsHidden': hidden
|
|
||||||
})
|
|
||||||
|
|
||||||
def get_public_users():
|
def get_public_users():
|
||||||
return _get("Users/Public")
|
return _get("Users/Public")
|
||||||
|
|
Loading…
Reference in a new issue