1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-05-12 14:47:46 +00:00

Don't hardcode login server URL on the launcher page

This commit is contained in:
Joshua Goins 2025-05-06 18:18:14 -04:00
parent 8790f443a2
commit ebec139fa3

View file

@ -57,7 +57,7 @@
req = new XMLHttpRequest();
req.addEventListener("readystatechange", readystatechange);
req.addEventListener("error", error);
req.open("POST", "http://ffxiv-login.square.localhost/oauth/ffxivarr/login/login.send");
req.open("POST", "http://{{ login_server }}/oauth/ffxivarr/login/login.send");
req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
req.send("sqexid=" + sqexid + "&password=" + password + "&otppw=" + otppw + "&_STORED_=" + stored);
}