This commit is contained in:
Xuan Son Nguyen
2026-08-21 22:43:39 +02:00
parent 039426a696
commit 03eb25f393
18 changed files with 70 additions and 57 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.get<std::string>();
std::string id = v;
if (!id.empty()) {
requested.push_back(std::move(id));
}