Skip to content

Commit

Permalink
fix tile build on source error
Browse files Browse the repository at this point in the history
  • Loading branch information
bcamper committed May 15, 2015
1 parent 96f30c8 commit 97542f2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/tile.js
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,9 @@ export default class Tile {
'error',
'debug'
];
keep.push(...keys);
if (Array.isArray(keys)) {
keep.push(...keys);
}

// Build the tile subset
var tile_subset = {};
Expand Down

0 comments on commit 97542f2

Please sign in to comment.