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 afd9b19
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 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
3 changes: 2 additions & 1 deletion resources/lib/models/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ 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")
"artist": self.label2,
"comment": self.info.get("description")
})
url = addon_base + PATH_USER + "?" + urllib.parse.urlencode({
"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 afd9b19

Please sign in to comment.