Add files via upload

This commit is contained in:
DeBros 2025-02-12 12:12:01 +02:00 committed by GitHub
parent 8eb268753d
commit ba10c416ef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,10 +3,10 @@ document.addEventListener("DOMContentLoaded", () => {
const comingSoonImage = document.getElementById("fullScreenImage"); const comingSoonImage = document.getElementById("fullScreenImage");
// Check if the domain is working // Check if the domain is working
fetch('https://store.debros.io', { method: 'HEAD', mode: 'no-cors' }) fetch('https://dapps.debros.io', { method: 'HEAD', mode: 'no-cors' })
.then(response => { .then(response => {
if (response.ok) { if (response.ok) {
window.location.href = 'https://store.debros.io'; window.location.href = 'https://dapps.debros.io';
} else { } else {
showComingSoonMessage(); showComingSoonMessage();
} }