Skip to content

Commit

Permalink
fix incomplete transferring in worker tile
Browse files Browse the repository at this point in the history
  • Loading branch information
mourner committed Oct 30, 2016
1 parent ee13651 commit 0f303af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js/source/worker_tile.js
Expand Up @@ -118,9 +118,9 @@ class WorkerTile {
buckets: serializeBuckets(util.values(buckets), transferables),
featureIndex: featureIndex.serialize(transferables),
collisionTile: collisionTile.serialize(transferables),
collisionBoxArray: this.collisionBoxArray.serialize(),
symbolInstancesArray: this.symbolInstancesArray.serialize(),
symbolQuadsArray: this.symbolQuadsArray.serialize()
collisionBoxArray: this.collisionBoxArray.serialize(transferables),
symbolInstancesArray: this.symbolInstancesArray.serialize(transferables),
symbolQuadsArray: this.symbolQuadsArray.serialize(transferables)
}, transferables);
};

Expand Down

0 comments on commit 0f303af

Please sign in to comment.