diff --git a/src/Tile.js b/src/Tile.js index bd4fed9..c99c282 100644 --- a/src/Tile.js +++ b/src/Tile.js @@ -25,18 +25,7 @@ export default class Tile { } _loadTile(buffer) { - try { - this.tile = new VectorTile(new Protobuf(buffer)); - } catch (error) { - // Ignoring upstream issue https://github.com/rastapasta/mapscii/issues/87 - if (error.message === 'Unimplemented type: 4') { - this.tile = { - layers: [], - }; - return; - } - throw error; - } + this.tile = new VectorTile(new Protobuf(buffer)); } _unzipIfNeeded(buffer) {