Fixed broken getUser subsonic endpoint

This commit is contained in:
Eliot Berriot 2019-10-25 11:58:58 +02:00
parent d1b1f11627
commit 0ecdd7c0fb
No known key found for this signature in database
GPG key ID: 6B501DFD73514E14
2 changed files with 3 additions and 2 deletions

View file

@ -295,7 +295,7 @@ def get_user_detail_data(user):
"playlistRole": "true",
"streamRole": "true",
"jukeboxRole": "true",
"folder": [f["id"] for f in get_folders(user)],
"folder": [{"value": f["id"]} for f in get_folders(user)],
}