Skip to content
Snippets Groups Projects
Commit 672d63bd authored by Mirar (Pontus Hagland)'s avatar Mirar (Pontus Hagland)
Browse files

type fix in async_fetch

Rev: lib/modules/Protocols.pmod/HTTP.pmod/Query.pike:1.23
parent eb2fd51d
No related branches found
No related tags found
No related merge requests found
......@@ -338,7 +338,7 @@ void async_fetch_close()
con->set_blocking();
destruct(con);
con=0;
request_ok(@extra_args);
if (request_ok) (request_ok)(@extra_args);
}
/****** utilities **************************************************/
......@@ -677,7 +677,7 @@ void destroy()
catch { con->close(); destruct(con); };
}
void async_fetch(function callback,array ... extra)
void async_fetch(function callback,mixed ... extra)
{
if (!con)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment