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 dc12fc6
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 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
11 changes: 8 additions & 3 deletions resources/lib/models/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,14 @@ 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)
list_item.setInfo("video", {
"plot": "{}\n{}\n\n{}".format(
self.label,
self.label2,
self.info.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)
Expand Down
2 changes: 1 addition & 1 deletion resources/lib/soundcloud/api_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ 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)
}
collection.items.append(user)

Expand Down

0 comments on commit dc12fc6

Please sign in to comment.