Skip to content
Snippets Groups Projects
Commit bcdfa1bb authored by lordjbs's avatar lordjbs
Browse files

fixes

parent b52ffda1
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,7 @@
"db": "database.json",
"devLog":false,
"requestThroughProxy": false,
"url":"SET YOUR URL",
"ratelimit": {
"enabled":true,
"requests":5000,
......
......@@ -3,6 +3,7 @@
"db": "db.json",
"devLog":false,
"requestThroughProxy": false,
"url":"localhost:3001",
"ratelimit": {
"enabled":true,
"requests":5000,
......
......@@ -65,7 +65,7 @@ router.get('/', function(req, res, next) {
res.send({
success: true,
id,
url: req.get('host')
url: config.url
});
}
......@@ -101,7 +101,7 @@ router.get('/', function(req, res, next) {
res.send({
success: true,
id,
url: req.get('host')
url: config.url
});
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment