[soundcloud] inline entry append

This commit is contained in:
Cory Hall 2019-02-01 17:49:34 -05:00
parent 852f50387a
commit b947387844

View File

@ -406,12 +406,10 @@ class SoundcloudPagedPlaylistBaseIE(SoundcloudPlaylistBaseIE):
(e, e.get('track'), e.get('playlist')))
if permalink_url:
entry_data = self.url_result(
entries.append(self.url_result(
permalink_url,
ie=SoundcloudIE.ie_key() if SoundcloudIE.suitable(permalink_url) else None,
video_id=entry_id, video_title=entry_title)
entries.append(entry_data)
video_id=entry_id, video_title=entry_title))
next_href = response.get('next_href')
if not next_href: