Skip to content

Commit

Permalink
Display correct user info
Browse files Browse the repository at this point in the history
Fixes #63
  • Loading branch information
jaylinski committed Mar 14, 2024
1 parent 5c0d308 commit 91d503e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ This add-on uses [Pipenv](https://pypi.org/project/pipenv/) to manage its depend

### Setup

[Install Pipenv](https://pipenv.readthedocs.io/en/latest/install/#installing-pipenv) and run `pipenv install --dev`.
[Install Pipenv](https://pipenv.pypa.io/en/latest/installation.html#installing-pipenv) and run `pipenv install --dev`.

### Build

Expand Down
14 changes: 12 additions & 2 deletions resources/lib/models/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,22 @@ class User(ListItem):
def to_list_item(self, addon_base):
list_item = xbmcgui.ListItem(label=self.label, label2=self.label2)
list_item.setArt({"thumb": self.thumb})
list_item.setInfo("music", {
"title": self.info.get("description")
list_item.setIsFolder(True)
# We have to use the `video`-type in order to display a proper description
list_item.setInfo("video", {
"plot": self._get_description()
})
list_item.setProperty("isPlayable", "false")
url = addon_base + PATH_USER + "?" + urllib.parse.urlencode({
"id": self.id,
"call": "/users/{id}/tracks".format(id=self.id)
})

return url, list_item, True

def _get_description(self):
return "{}\n{} followers\n\n{}".format(
self.label2 if self.label2 != "" else self.label,
self.info.get("followers"),
self.info.get("description")
)
3 changes: 2 additions & 1 deletion resources/lib/soundcloud/api_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,8 @@ def _map_json_to_collection(self, json_obj):
user.label2 = item.get("full_name", "")
user.thumb = self._get_thumbnail(item, self.thumbnail_size)
user.info = {
"artist": item.get("description", None)
"description": item.get("description", None),
"followers": item.get("followers", 0)
}
collection.items.append(user)

Expand Down

0 comments on commit 91d503e

Please sign in to comment.