Skip to content

Commit

Permalink
Fix issue 37
Browse files Browse the repository at this point in the history
  • Loading branch information
nfeignon committed Jan 20, 2015
1 parent a2851ac commit 461ef6c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion mopidy_soundcloud/soundcloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,10 @@ def get_user_liked(self):

track = data['track']
if track:
likes.append(self.parse_track(track))
parsed_track = self.parse_track(track)

if parsed_track:
likes.append(parse_track)

pl = data['playlist']
if pl:
Expand Down

0 comments on commit 461ef6c

Please sign in to comment.