Compare commits

..

No commits in common. "0e4d1e9de6250a80453d46f94b9fade5f10197a0" and "e3f0d8b731b40176bcc632bf92cfe5149402b202" have entirely different histories.

2 changed files with 1 additions and 2 deletions

View File

@ -95,7 +95,6 @@ class LBRYBaseIE(InfoExtractor):
'_type': 'url',
'id': item['claim_id'],
'url': self._permanent_url(url, item['name'], item['claim_id']),
'ie_key': 'LBRY',
}
def _playlist_entries(self, url, display_id, claim_param, metadata):

View File

@ -405,7 +405,7 @@ class RumbleChannelIE(InfoExtractor):
for video_url in traverse_obj(
get_elements_html_by_class('videostream__link', webpage), (..., {extract_attributes}, 'href'),
):
yield self.url_result(urljoin('https://rumble.com', video_url), RumbleIE)
yield self.url_result(urljoin('https://rumble.com', video_url))
def _real_extract(self, url):
url, playlist_id = self._match_valid_url(url).groups()