We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6eaf385 commit c40412eCopy full SHA for c40412e
src/components/Packages/index.jsx
@@ -80,8 +80,10 @@ const Packages = () => {
80
};
81
const fetchLatestData = async () => {
82
try {
83
+ // Fetch the RSS feed from conda-forge. We add a cache-busting query parameter
84
+ // to ensure we always get the latest data. Otherwise, the data gets stuck in time.
85
const response = await fetch(
- "https://conda.anaconda.org/conda-forge/rss.xml"
86
+ `https://conda.anaconda.org/conda-forge/rss.xml?bustcache=${Date.now()}`
87
);
88
// parse the RSS feed into an XML document
89
const xml = await response.text();
0 commit comments