diff options
author | garret <garret@airmail.cc> | 2023-06-04 00:53:09 +0100 |
---|---|---|
committer | garret <garret@airmail.cc> | 2023-06-04 00:53:37 +0100 |
commit | 4583e89befbeca8ca66e29fe65b39800b55d3da6 (patch) | |
tree | f841bd9d164f6ec7201712cb9a7c363b422e3b12 | |
parent | f07f642a1d79fc964a3625a32eac65d616cd369a (diff) | |
download | yt-dlp-rajiko-4583e89befbeca8ca66e29fe65b39800b55d3da6.tar.gz yt-dlp-rajiko-4583e89befbeca8ca66e29fe65b39800b55d3da6.tar.bz2 yt-dlp-rajiko-4583e89befbeca8ca66e29fe65b39800b55d3da6.zip |
add message asking for reports if region mismatch
-rwxr-xr-x | 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 f7b575b..8878308 100755 --- a/yt_dlp_plugins/extractor/radiko.py +++ b/yt_dlp_plugins/extractor/radiko.py @@ -465,7 +465,7 @@ class _RadikoBaseIE(InfoExtractor): actual_region, region_kanji, region_english = auth2.split(",") if actual_region != station_region: - self.report_warning(f"Didn't get the right region: expected {station_region}, got {actual_region}") + self.report_warning(f"Didn't get the right region: expected {station_region}, got {actual_region}. This should never happen, please report it by opening an issue on the plugin repo.") # this should never happen token = { |