diff options
author | garret1317 <garret@airmail.cc> | 2025-06-06 02:22:30 +0100 |
---|---|---|
committer | garret1317 <garret@airmail.cc> | 2025-06-06 02:22:30 +0100 |
commit | b2a004a66e697bbb24af60ebc8221986fa519c19 (patch) | |
tree | a74e4f8c398da0e6177212f9dbe1f724d6e30963 | |
parent | 50bfb27bd17236ccdc5dadf87b461c418edf2508 (diff) | |
download | yt-dlp-rajiko-master.tar.gz yt-dlp-rajiko-master.tar.bz2 yt-dlp-rajiko-master.zip |
rather embarrassing bug introduced in a659b48a20b6241a68fc046c86c9ad0f71c9bd86 / v1.5
only caught it now because i only listen to weekly programmes so i only get 1 result anyway
-rw-r--r-- | yt_dlp_plugins/extractor/radiko.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp_plugins/extractor/radiko.py b/yt_dlp_plugins/extractor/radiko.py index f58e744..ca9ab6f 100644 --- a/yt_dlp_plugins/extractor/radiko.py +++ b/yt_dlp_plugins/extractor/radiko.py @@ -637,7 +637,7 @@ class RadikoSearchIE(InfoExtractor): id=join_nonempty(station, timestring) ) ) - return results + return results def _real_extract(self, url): url = url.replace("/#!/", "/!/", 1) |