codeql
This commit is contained in:
parent
aa936eaef4
commit
1c3baef5ee
1 changed files with 5 additions and 5 deletions
|
@ -48,11 +48,11 @@ export const serve_data = {
|
||||||
if (verbose) {
|
if (verbose) {
|
||||||
console.log(
|
console.log(
|
||||||
`Handling tile request for: /data/%s/%s/%s/%s.%s`,
|
`Handling tile request for: /data/%s/%s/%s/%s.%s`,
|
||||||
String(id).replace(/\n|\r/g, ''),
|
String(req.params.id).replace(/\n|\r/g, ''),
|
||||||
String(z).replace(/\n|\r/g, ''),
|
String(req.params.z).replace(/\n|\r/g, ''),
|
||||||
String(x).replace(/\n|\r/g, ''),
|
String(req.params.x).replace(/\n|\r/g, ''),
|
||||||
String(y).replace(/\n|\r/g, ''),
|
String(req.params.y).replace(/\n|\r/g, ''),
|
||||||
String(format).replace(/\n|\r/g, ''),
|
String(req.params.format).replace(/\n|\r/g, ''),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
const item = repo[req.params.id];
|
const item = repo[req.params.id];
|
||||||
|
|
Loading…
Reference in a new issue