revert some excessive changes

This commit is contained in:
Xuan Son Nguyen
2026-08-21 22:56:42 +02:00
parent 03eb25f393
commit 173d7e804e
12 changed files with 27 additions and 27 deletions
+1 -1
View File
@@ -510,7 +510,7 @@ server_http_context::handler_t server_stream_make_lookup_handler() {
if (body.contains("conversation_ids") && body["conversation_ids"].is_array()) {
for (const auto & v : body["conversation_ids"]) {
if (v.is_string()) {
std::string id = v;
std::string id = v.get<std::string>();
if (!id.empty()) {
requested.push_back(std::move(id));
}