From bc710a29f22de81407d2ac4271dfcd9bf2fc3e8f Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Sun, 21 Jul 2024 05:51:24 +0000 Subject: [PATCH] Correct pre-WHIP-standardized POST return code :/. --- srv-daemon/source/node.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srv-daemon/source/node.cpp b/srv-daemon/source/node.cpp index 98c0f2ae0..9cc44aa0a 100644 --- a/srv-daemon/source/node.cpp +++ b/srv-daemon/source/node.cpp @@ -57,7 +57,7 @@ void Node::Run(const asio::ip::address &bind, uint16_t port, const std::string & Log() << std::endl; } - co_return Respond(request, http::status::ok, { + co_return Respond(request, http::status::accepted, { {"content-type", "application/sdp"}, }, std::move(answer)); });