Skip to content

Commit

Permalink
fix: docker failed to initialize when aliasgroups is passed
Browse files Browse the repository at this point in the history
wsd-00001-00001 2023-09-07 06:57:38.412560 +0000 [ coolwsd ] FTL  Failed to initialize COOLWSD: Syntax error: Cannot convert to boolean: | wsd/COOLWSD.hpp:513
Syntax error: Cannot convert to boolean:
<shutdown>-00001 2023-09-07 06:57:38.413335 +0000 [ coolwsd ] SIG   Fatal signal received: SIGABRT code: 18446744073709551610 for address: 0x6400000001

Signed-off-by: Rash419 <[email protected]>
Change-Id: I446bc9b2c2172d820da2ea148eefd1d7f964be80
  • Loading branch information
Rash419 committed Oct 7, 2023
1 parent 1f9c188 commit 246e0eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wsd/COOLWSD.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3141,7 +3141,7 @@ void COOLWSD::initializeEnvOptions()
{
const std::string path = "storage.wopi.alias_groups.group[" + std::to_string(n) + "].host";
_overrideSettings[path] = alias;
_overrideSettings[path + "[@allow]"] = true;
_overrideSettings[path + "[@allow]"] = "true";
first = false;
}
else
Expand Down

0 comments on commit 246e0eb

Please sign in to comment.