aboutsummaryrefslogtreecommitdiffstats
path: root/util/async.lua
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2016-04-16 21:08:05 +0100
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2016-04-16 21:08:05 +0100
commitc6048a7cb4097d24b5c28a29247ba7175e00ea37 (patch)
treea6829d7aa93901aa2b6d2dd4f0fc83cf3d248eea /util/async.lua
parent07cda18b8af349dcdb271458e3ae5931f9a227cf (diff)
downloadprosody-c6048a7cb4097d24b5c28a29247ba7175e00ea37.tar.gz
prosody-c6048a7cb4097d24b5c28a29247ba7175e00ea37.zip
Update every link to the documentation to use HTTPS
Diffstat (limited to 'util/async.lua')
-rw-r--r--util/async.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/async.lua b/util/async.lua
index 968ec804..7b2eae54 100644
--- a/util/async.lua
+++ b/util/async.lua
@@ -25,7 +25,7 @@ end
local function waiter(num)
local thread = coroutine.running();
if not thread then
- error("Not running in an async context, see http://prosody.im/doc/developers/async");
+ error("Not running in an async context, see https://prosody.im/doc/developers/async");
end
num = num or 1;
local waiting;
@@ -48,7 +48,7 @@ local function guarder()
return function (id, func)
local thread = coroutine.running();
if not thread then
- error("Not running in an async context, see http://prosody.im/doc/developers/async");
+ error("Not running in an async context, see https://prosody.im/doc/developers/async");
end
local guard = guards[id];
if not guard then