fix: invalid css selector for download links

This commit is contained in:
Bryan Galdámez 2025-06-21 13:04:35 -06:00
parent 7ed69308ba
commit 54fc6fe295
No known key found for this signature in database

View file

@ -95,7 +95,8 @@
}
// Replace all download links with twilight versions
const downloadLinks = document.querySelectorAll('a.download-link')
const downloadLinks = document.querySelectorAll('a.download-button')
for (const link of downloadLinks) {
if (!link.id.includes('beta')) {
const href = link.getAttribute('href')