Skip to content

Commit

Permalink
Correct pre-WHIP-standardized POST return code :/.
Browse files Browse the repository at this point in the history
  • Loading branch information
saurik committed Jul 21, 2024
1 parent ddfb039 commit bc710a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion srv-daemon/source/node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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));
});
Expand Down

0 comments on commit bc710a2

Please sign in to comment.