docker: fix all aliasgroup env variable values added to blocked list

Signed-off-by: Rash419 <rashesh.padia@collabora.com>
Change-Id: Id7480ab88564965cc7aba34c5020daaf18259815
This commit is contained in:
Rash419 2023-10-05 12:31:07 +05:30 committed by Andras Timar
parent 0ba51f81e7
commit 72da1dccaf

View file

@ -3135,8 +3135,9 @@ void COOLWSD::initializeEnvOptions()
{
if (first)
{
_overrideSettings["storage.wopi.alias_groups.group[" + std::to_string(n) +
"].host"] = alias;
const std::string path = "storage.wopi.alias_groups.group[" + std::to_string(n) + "].host";
_overrideSettings[path] = alias;
_overrideSettings[path + "[@allow]"] = true;
first = false;
}
else