aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/yt_dlp_plugins/extractor/radiko_protobufs.py
diff options
context:
space:
mode:
authorgarret1317 <garret@airmail.cc>2025-08-13 07:29:19 +0100
committergarret1317 <garret@airmail.cc>2025-08-13 07:29:19 +0100
commit9e91cb5ee32a47eb05dc2d3885e13d274cdadd03 (patch)
treeb1e99b51944ff64c27440be8851721431b938f50 /yt_dlp_plugins/extractor/radiko_protobufs.py
parentd5f824093b0748889916a1ba820398aecaa184c8 (diff)
downloadyt-dlp-rajiko-9e91cb5ee32a47eb05dc2d3885e13d274cdadd03.tar.gz
yt-dlp-rajiko-9e91cb5ee32a47eb05dc2d3885e13d274cdadd03.tar.bz2
yt-dlp-rajiko-9e91cb5ee32a47eb05dc2d3885e13d274cdadd03.zip
ListPodcastEpisodesRequest: dontknow -> sort_by_latest
Diffstat (limited to 'yt_dlp_plugins/extractor/radiko_protobufs.py')
-rwxr-xr-xyt_dlp_plugins/extractor/radiko_protobufs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/yt_dlp_plugins/extractor/radiko_protobufs.py b/yt_dlp_plugins/extractor/radiko_protobufs.py
index 2336f10..ff4531e 100755
--- a/yt_dlp_plugins/extractor/radiko_protobufs.py
+++ b/yt_dlp_plugins/extractor/radiko_protobufs.py
@@ -88,7 +88,7 @@ if protobug: # i suppose it works lmao
@protobug.message
class ListPodcastEpisodesRequest:
channel_id: protobug.String = protobug.field(1)
- dontknow: protobug.Int32 = protobug.field(2)
+ sort_by_latest: protobug.Bool = protobug.field(2)
page_length: protobug.Int32 = protobug.field(4)
cursor: protobug.String = protobug.field(5, default=None)
@@ -145,7 +145,7 @@ if protobug: # i suppose it works lmao
headers={'Authorization': f'Bearer {jwt}'},
data=ListPodcastEpisodesRequest(
channel_id=channel_id,
- dontknow=1,
+ sort_by_latest=True,
page_length=page_length,
cursor=cursor,
)