Update Home component to modify URL structure for device redirection, removing the 'x8' segment for improved navigation.

This commit is contained in:
yangy
2026-05-27 10:39:17 +08:00
parent 517036439c
commit 70b4d610fe
+1 -1
View File
@@ -925,7 +925,7 @@ export default function Home() {
onClick={() => { onClick={() => {
const target = ip.trim(); const target = ip.trim();
if (!target) return; if (!target) return;
window.location.href = `https://am.luxsinaudio.com/x8/i.html?ip=${encodeURIComponent(target)}#/home`; window.location.href = `https://am.luxsinaudio.com/i.html?ip=${encodeURIComponent(target)}`;
}} }}
/> />
</div> </div>