We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1af2a0f commit 63768e4Copy full SHA for 63768e4
conda_metadata_app/pages/main_page.py
@@ -299,7 +299,9 @@ def repodata_patches(channel_name: str) -> dict[str, Any]:
299
package_name = f"{channel_name}-repodata-patches"
300
data = anaconda_api_data(package_name, channel_name)
301
most_recent = sorted(data, key=lambda x: x["attrs"]["timestamp"], reverse=True)[0]
302
- filename, conda = conda_reader_for_url(f"https:{most_recent['download_url']}")
+ filename, conda = conda_reader_for_url(
303
+ f"https:{most_recent['download_url']}", fall_back_to_full_download=True
304
+ )
305
306
patches = {}
307
with closing(conda):
0 commit comments