Skip to content

Commit

Permalink
Naming fixes
Browse files Browse the repository at this point in the history
Signed-off-by: andreasma <maand@gmx.de>
Change-Id: I5562e00037ec0fe9c04c1dbe2651f97e39e884dd
  • Loading branch information
andreasma committed May 18, 2024
1 parent a949d8e commit df47ecd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wsd/ClientRequestDispatcher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ class ConvertToAddressResolver : public std::enable_shared_from_this<ConvertToAd
{
net::AsyncDNS::DNSThreadFn pushHostnameResolvedToPoll = [this](const std::string& hostname,
const std::string& exception) {
COOLWSD::getWebServerPoll()->addCallback([this, hostname, exception]() {
LOOLWSD::getWebServerPoll()->addCallback([this, hostname, exception]() {
hostnameResolved(hostname, exception);
});
};
Expand Down Expand Up @@ -2013,7 +2013,7 @@ void ClientRequestDispatcher::handleCapabilitiesRequest(const Poco::Net::HTTPReq
LOG_DBG("Wopi capabilities request: " << request.getURI());

AsyncFn convertToAllowedCb = [socket](bool allowedConvert){
COOLWSD::getWebServerPoll()->addCallback([socket, allowedConvert]() { sendCapabilities(allowedConvert, socket); });
LOOLWSD::getWebServerPoll()->addCallback([socket, allowedConvert]() { sendCapabilities(allowedConvert, socket); });
};

allowConvertTo(socket->clientAddress(), request, convertToAllowedCb);
Expand Down

0 comments on commit df47ecd

Please sign in to comment.