From 54bbbc85488fb29acb71a1a6d2e53eefba32c8ca Mon Sep 17 00:00:00 2001 From: kaotisk Date: Fri, 11 Oct 2024 06:42:04 +0300 Subject: Fix accidental removal --- server/index.js | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/server/index.js b/server/index.js index 4f2e8b8..589d7db 100755 --- a/server/index.js +++ b/server/index.js @@ -148,22 +148,12 @@ function processMethod(req, res) } } -function checkIfAllowedIP(address) -{ - return address.startsWith('fc') ? true : false; -} - function requestParser(req, res) { printRequest(req); akLogMessage('INFO', `Incoming from [${req.connection.remoteAddress}]:${req.socket._peername.port} @ ${req.headers.host}${req.url}`); - if (checkIfAllowedIP(req.connection.remoteAddress)){ - res.setHeader('Access-Control-Allow-Origin', '*'); - processMethod(req, res); - } - else { - res.end(); - } + res.setHeader('Access-Control-Allow-Origin', '*'); + processMethod(req, res); } const server = http.createServer(serverOptions, requestParser); -- cgit v1.2.3