fix js errors

This commit is contained in:
Alex Turchyn
2024-05-30 00:35:35 +03:00
committed by Pete Matsyburka
parent c56f8cb38f
commit 7080e8ea33
4 changed files with 31 additions and 17 deletions
+10 -5
View File
@@ -17,13 +17,18 @@ export default targetable(class extends HTMLElement {
this.toggleState()
fetch(this.dataset.src).then((response) => response.json()).then((urls) => {
const isSafariIos = /iPhone|iPad|iPod/i.test(navigator.userAgent)
fetch(this.dataset.src).then(async (response) => {
if (response.ok) {
const urls = await response.json()
const isSafariIos = /iPhone|iPad|iPod/i.test(navigator.userAgent)
if (isSafariIos && urls.length > 1) {
this.downloadSafariIos(urls)
if (isSafariIos && urls.length > 1) {
this.downloadSafariIos(urls)
} else {
this.downloadUrls(urls)
}
} else {
this.downloadUrls(urls)
alert('Failed to download files')
}
})
}