chore: auto-commit (4 archivos)
- data.h - data_http.cpp - views.cpp - appicon.ico Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
+2
-1
@@ -373,7 +373,7 @@ bool load_all_functions_http(const std::string& api_url,
|
||||
HttpClient cli(host, port);
|
||||
auto j = api_query(cli,
|
||||
"SELECT id, name, lang, domain, kind, purity, description, "
|
||||
"created_at, tested FROM functions ORDER BY name");
|
||||
"created_at, tested, uses_functions FROM functions ORDER BY name");
|
||||
if (j.is_null() || !j.contains("rows")) return false;
|
||||
|
||||
out.clear();
|
||||
@@ -389,6 +389,7 @@ bool load_all_functions_http(const std::string& api_url,
|
||||
r.description = extract_str(row, 6);
|
||||
r.created_at = extract_str(row, 7);
|
||||
r.tested = extract_row_int(row, 8) != 0;
|
||||
r.uses_functions = extract_str(row, 9);
|
||||
out.push_back(std::move(r));
|
||||
}
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user