typo fix for IP

This commit is contained in:
Marek Farkaš
2025-01-11 22:06:21 +01:00
parent b356f8eee5
commit bf0264fb61
+1 -1
View File
@@ -57,7 +57,7 @@ function authenticateWithXdrd(client, salt, password) {
}
function handleConnect(clientIp, currentUsers, ws) {
http.get(`http://ip-api.com/json/${clientIp}/`, (response) => {
http.get(`http://ip-api.com/json/${clientIp}`, (response) => {
let data = '';
response.on('data', (chunk) => {