fix: Checks all parts while parsing config params.

This commit is contained in:
damencho 2021-06-16 13:53:26 -05:00 committed by Дамян Минков
parent f991a93afd
commit be73ed9d19
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ export function parseURLParams(
const param = part.split('=');
const key = param[0];
if (!key || blacklist.includes(key.split('.')[0])) {
if (!key || key.split('.').some(k => blacklist.includes(k))) {
return;
}