Really skip extended keys

This commit is contained in:
Sandro Santilli 2012-11-26 12:51:55 +01:00
parent c3169745ee
commit 08c75843de

View File

@ -55,7 +55,10 @@ client.on('connect', function() {
if ( /map_style\|.*\|.*\|/.test(k) ) {
//console.warn("Key " + k + " is EXTENDED, skipping");
// TODO: drop instead ?
// See https://github.com/Vizzuality/Windshaft-cartodb/issues/58
processNext();
return;
}
var params = RegExp(/map_style\|(.*)\|(.*)/).exec(k);