summaryrefslogtreecommitdiffstats
path: root/server/src/config.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/config.cpp')
-rw-r--r--server/src/config.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/server/src/config.cpp b/server/src/config.cpp
index 5c1a161..200b873 100644
--- a/server/src/config.cpp
+++ b/server/src/config.cpp
@@ -182,7 +182,8 @@ auto tag_invoke(
182 [](object_reader& r) -> http_server 182 [](object_reader& r) -> http_server
183 { 183 {
184 return { 184 return {
185 .lax_cors = r.expect_at<bool>("lax_cors"), 185 .allow_origins =
186 r.expect_at<std::vector<std::string>>("allow_origins"),
186 }; 187 };
187 }); 188 });
188} 189}