Remove unnecessary semicolon

This commit is contained in:
tgpethan 2020-06-15 11:48:03 +01:00
parent 1b3d68d0c8
commit 919bfd9993
1 changed files with 1 additions and 1 deletions

2
EUS.js
View File

@ -129,7 +129,7 @@ module.exports = {
fs.access(__dirname + BASE_PATH + "/i/"+urs+image_json[urs], error => {
if (error) {
// Doesn't exist, handle request normaly
if (req.url === "/") { urs = "/index.html" } else { urs = req.url };
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.