Commit f56a0c60 authored by Dmitry Frank's avatar Dmitry Frank Committed by rojer

v7_is_true() -> v7_is_truthy()

    PUBLISHED_FROM=73acce1507eb41f264f117b0775efea16db42ec1
parent 9ce84860
......@@ -4618,7 +4618,7 @@ void http_handler(struct mg_connection *nc, int ev, void *ev_data) {
v7_array_push(v7, args, v7_mk_foreign(nc));
v7_array_push(v7, args, req);
if (v7_apply(v7, v2, v7_mk_undefined(), args, &res) == V7_OK &&
v7_is_true(v7, res)) {
v7_is_truthy(v7, res)) {
js_callback_handled_request++;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment