diff options
author | garret1317 <garret@airmail.cc> | 2025-08-13 07:29:19 +0100 |
---|---|---|
committer | garret1317 <garret@airmail.cc> | 2025-08-13 07:29:19 +0100 |
commit | 9e91cb5ee32a47eb05dc2d3885e13d274cdadd03 (patch) | |
tree | b1e99b51944ff64c27440be8851721431b938f50 | |
parent | d5f824093b0748889916a1ba820398aecaa184c8 (diff) | |
download | yt-dlp-rajiko-9e91cb5ee32a47eb05dc2d3885e13d274cdadd03.tar.gz yt-dlp-rajiko-9e91cb5ee32a47eb05dc2d3885e13d274cdadd03.tar.bz2 yt-dlp-rajiko-9e91cb5ee32a47eb05dc2d3885e13d274cdadd03.zip |
ListPodcastEpisodesRequest: dontknow -> sort_by_latest
-rwxr-xr-x | yt_dlp_plugins/extractor/radiko_protobufs.py | 4 |
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, ) |