util/async.lua
changeset 8240 f81cd9aaf994
parent 7728 f928695a2af1
child 8410 f652e1ea2f69
--- a/util/async.lua	Fri Sep 15 17:07:57 2017 -0400
+++ b/util/async.lua	Fri Sep 15 17:17:07 2017 -0400
@@ -27,7 +27,7 @@
 local function waiter(num)
 	local thread = coroutine.running();
 	if not thread then
-		error("Not running in an async context, see https://prosody.im/doc/developers/async");
+		error("Not running in an async context, see https://prosody.im/doc/developers/util/async");
 	end
 	num = num or 1;
 	local waiting;
@@ -50,7 +50,7 @@
 	return function (id, func)
 		local thread = coroutine.running();
 		if not thread then
-			error("Not running in an async context, see https://prosody.im/doc/developers/async");
+			error("Not running in an async context, see https://prosody.im/doc/developers/util/async");
 		end
 		local guard = guards[id];
 		if not guard then