Merge pull request #5 from tgpethan/esl+index-fix

Add back ESL remote check and fix index errors
This commit is contained in:
the-basic-geek 2020-01-09 19:58:31 +00:00 committed by GitHub
commit 407f9ddf89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

5
EUS.js
View File

@ -78,6 +78,8 @@ module.exports = {
res - Response from server
*/
if (req.query["stat"] == "get") return res.end('{ "status":1, "version":"'+global.internals.version+'" }');
// Register the time at the start of the request
d = new Date();
startTime = d.getTime();
@ -87,7 +89,8 @@ module.exports = {
fs.access(__dirname + BASE_PATH + "/i/"+urs+image_json[urs], error => {
if (error) {
// Doesn't exist, handle request normaly
fs.access(__dirname + BASE_PATH + "/files"+req.url, error => {
if (req.url === "/") { urs = "/index.html" } else { urs = req.url };
fs.access(__dirname + BASE_PATH + "/files"+urs, error => {
if (error) {
// Doesn't exist, send a 404 to the client.
res.status(404).end("404!");