From 7e33c4fc76a54befd3be79c592b6d2bc195eadc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Blin?= <sebastien.blin@savoirfairelinux.com> Date: Tue, 11 Oct 2022 10:41:10 -0400 Subject: [PATCH] dht_proxy_server: fix push notifications if tls is enabled If the proxy got TLS enabled, this doesn't mean that the REST endpoint for push notifications is also using TLS. Also, fix an incorrect log. --- src/dht_proxy_server.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dht_proxy_server.cpp b/src/dht_proxy_server.cpp index 4bbfff25..3fe2aae4 100644 --- a/src/dht_proxy_server.cpp +++ b/src/dht_proxy_server.cpp @@ -1018,7 +1018,7 @@ DhtProxyServer::sendPushNotification(const std::string& token, Json::Value&& jso unsigned reqid = 0; try { auto request = std::make_shared<http::Request>(io_context(), pushHostPort_.first, pushHostPort_.second, - httpsServer_ ? true : false, logger_); + pushHostPort_.first.find("https://") == 0, logger_); reqid = request->id(); request->set_target("/api/push"); request->set_method(restinio::http_method_post()); @@ -1078,7 +1078,7 @@ DhtProxyServer::sendPushNotification(const std::string& token, Json::Value&& jso } catch (const std::exception &e){ if (logger_) - logger_->e("[proxy:server] [notification] error send push: %i", e.what()); + logger_->e("[proxy:server] [notification] error send push: %s", e.what()); if (reqid) { std::lock_guard<std::mutex> l(requestLock_); requests_.erase(reqid); -- GitLab