Fixes style

This commit is contained in:
hermano 2021-08-16 18:54:40 -03:00
parent 5b520fbe0f
commit 14e251f158

View File

@ -945,7 +945,7 @@ bool DynamicQueryHandler::customizeQueryParam(ContextMutablePtr context, const s
/// Save name and values of substitution in dictionary.
const String parameter_name = key.substr(strlen("param_"));
if(!context->getQueryParameters().contains(parameter_name))
if (!context->getQueryParameters().contains(parameter_name))
context->setQueryParameter(parameter_name, value);
return true;
}