From 7bdbc6ac6bc1574396acf1fec8f0f7ea7bebad62 Mon Sep 17 00:00:00 2001 From: FURK4NGG <105324908+FURK4NGG@users.noreply.github.com> Date: Mon, 9 Sep 2024 16:38:51 +0300 Subject: [PATCH] Update index.html --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 0fa191a..525b6ec 100644 --- a/index.html +++ b/index.html @@ -17,9 +17,9 @@ document.addEventListener('DOMContentLoaded', () => { const userLang = navigator.language || navigator.userLanguage; if (userLang.startsWith('tr')) { - window.location.href = 'hometr.html'; + window.location.replace('hometr.html'); } else { - window.location.href = 'home.html'; + window.location.replace('home.html'); } });