aboutsummaryrefslogtreecommitdiff
path: root/zenserver/auth/authservice.cpp
diff options
context:
space:
mode:
authorMartin Ridgers <[email protected]>2022-01-25 12:51:51 +0100
committerMartin Ridgers <[email protected]>2022-01-25 12:51:51 +0100
commit798e5157b182f2bd59713331183e1c700abfe717 (patch)
treeb8f7b99944e943aae32c8241e05483487c3736b8 /zenserver/auth/authservice.cpp
parentCommand line paths containing whitespace were getting truncated (diff)
downloadzen-798e5157b182f2bd59713331183e1c700abfe717.tar.xz
zen-798e5157b182f2bd59713331183e1c700abfe717.zip
Mac compile fix
Diffstat (limited to 'zenserver/auth/authservice.cpp')
-rw-r--r--zenserver/auth/authservice.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/zenserver/auth/authservice.cpp b/zenserver/auth/authservice.cpp
index c6def15b4..eecad45bf 100644
--- a/zenserver/auth/authservice.cpp
+++ b/zenserver/auth/authservice.cpp
@@ -11,7 +11,7 @@ HttpAuthService::HttpAuthService()
{
m_Router.RegisterRoute(
"token",
- [this](HttpRouterRequest& RouterRequest) {
+ [](HttpRouterRequest& RouterRequest) {
HttpServerRequest& ServerRequest = RouterRequest.ServerRequest();
ServerRequest.WriteResponse(HttpResponseCode::OK);
},