From 08c75843de1e568e61769e93c784addc129f938d Mon Sep 17 00:00:00 2001 From: Sandro Santilli Date: Mon, 26 Nov 2012 12:51:55 +0100 Subject: [PATCH] Really skip extended keys --- tools/reset_styles | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/reset_styles b/tools/reset_styles index 863312ef..3a475a9f 100755 --- a/tools/reset_styles +++ b/tools/reset_styles @@ -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);