Merge pull request #979 from matkoniecz/feature/log-more-clear-errors
provide more clear errors
This commit is contained in:
commit
5c541b5ca0
@ -38,16 +38,16 @@ router.get('/:tileset/:z/:x/:y(\\d+):scale(@\\dx)?.png', handleTileRequest);
|
|||||||
function parseTileParams(params: any): TileParams {
|
function parseTileParams(params: any): TileParams {
|
||||||
const { tileset, z, x, y, scale } = params;
|
const { tileset, z, x, y, scale } = params;
|
||||||
|
|
||||||
if (!allTilesets.includes(tileset)) throw new Error('Invalid value for tileset');
|
if (!allTilesets.includes(tileset)) throw new Error('Invalid value for tileset: ' + tileset);
|
||||||
|
|
||||||
const intZ = strictParseInt(z);
|
const intZ = strictParseInt(z);
|
||||||
if (isNaN(intZ)) throw new Error('Invalid value for z');
|
if (isNaN(intZ)) throw new Error('Invalid value for z: ' + intZ);
|
||||||
|
|
||||||
const intX = strictParseInt(x);
|
const intX = strictParseInt(x);
|
||||||
if (isNaN(intX)) throw new Error('Invalid value for x');
|
if (isNaN(intX)) throw new Error('Invalid value for x: ' + intX);
|
||||||
|
|
||||||
const intY = strictParseInt(y);
|
const intY = strictParseInt(y);
|
||||||
if (isNaN(intY)) throw new Error('Invalid value for y');
|
if (isNaN(intY)) throw new Error('Invalid value for y: ' + intY);
|
||||||
|
|
||||||
let intScale: number;
|
let intScale: number;
|
||||||
if (scale === '@2x') {
|
if (scale === '@2x') {
|
||||||
|
Loading…
Reference in New Issue
Block a user