diff --git a/modules/util/util.js b/modules/util/util.js index babfdf6aa..c7c8cb95c 100644 --- a/modules/util/util.js +++ b/modules/util/util.js @@ -138,9 +138,6 @@ export function utilStringQs(str) { if (parts.length === 2) { obj[parts[0]] = (null === parts[1]) ? '' : decodeURIComponent(parts[1]); } - if (parts[0] === 'mvt') { - obj[parts[0]] = (parts[2] !== undefined) ? (decodeURIComponent(parts[1]) + '=' + decodeURIComponent(parts[2])) : (decodeURIComponent(parts[1])); - } return obj; }, {}); }