aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/yt_dlp_plugins/extractor/radiko.py
diff options
context:
space:
mode:
Diffstat (limited to 'yt_dlp_plugins/extractor/radiko.py')
-rw-r--r--yt_dlp_plugins/extractor/radiko.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp_plugins/extractor/radiko.py b/yt_dlp_plugins/extractor/radiko.py
index f9d9dd4..caaa020 100644
--- a/yt_dlp_plugins/extractor/radiko.py
+++ b/yt_dlp_plugins/extractor/radiko.py
@@ -709,7 +709,7 @@ class RadikoPersonIE(InfoExtractor):
person_api_url = update_url_query("https://api.radiko.jp/program/api/v1/programs", {
"person_id": person_id,
"start_at_gte": min_start.isoformat(),
- "end_at_lt": now.isoformat(),
+ "start_at_lt": now.isoformat(),
})
person_api = self._download_json(person_api_url, person_id)