# HG changeset patch # User Kim Alvefur # Date 1511297323 -3600 # Node ID b751bee6a829ca1a314260c92694573c880490d5 # Parent f652e1ea2f6994a063ceb0b143d2eb165daf24bd util.async: Fix thread check to work correctly in Lua 5.2 coroutine.running() now returns the main thread and a boolean true if called from the main thread, as opposed to nil in 5.1 diff -r f652e1ea2f69 -r b751bee6a829 util/async.lua --- a/util/async.lua Tue Nov 21 21:48:14 2017 +0100 +++ b/util/async.lua Tue Nov 21 21:48:43 2017 +0100 @@ -1,8 +1,8 @@ local log = require "util.logger".init("util.async"); local function checkthread() - local thread = coroutine.running(); - if not thread then + local thread, main = coroutine.running(); + if not thread or main then error("Not running in an async context, see https://prosody.im/doc/developers/util/async"); end return thread;