From 0e4d1e9de6250a80453d46f94b9fade5f10197a0 Mon Sep 17 00:00:00 2001 From: christoph-heinrich Date: Tue, 27 Jan 2026 03:06:38 +0100 Subject: [PATCH] [ie/lbry] Support filtering of flat playlist results (#15695) Closes #15683 Authored by: christoph-heinrich, dirkf Co-authored-by: dirkf <1222880+dirkf@users.noreply.github.com> --- yt_dlp/extractor/lbry.py | 1 + 1 file changed, 1 insertion(+) diff --git a/yt_dlp/extractor/lbry.py b/yt_dlp/extractor/lbry.py index e6eef13e5d..192d612d7f 100644 --- a/yt_dlp/extractor/lbry.py +++ b/yt_dlp/extractor/lbry.py @@ -95,6 +95,7 @@ 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):