Merge 50294ac6337e8024f4ca3043833669544f9a211f into 4fe9a60a0c9da952dadc5214a9ca5c68c447fdf8

This commit is contained in:
Christian Paul 2023-02-26 16:54:55 +00:00 committed by GitHub
commit 0da0046be5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,7 +30,18 @@ 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;
}
}
_unzipIfNeeded(buffer) {