Remove unnecessary semicolon
This commit is contained in:
parent
1b3d68d0c8
commit
919bfd9993
1 changed files with 1 additions and 1 deletions
2
EUS.js
2
EUS.js
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue