# HG changeset patch # User Matthew Wild # Date 1276258990 -3600 # Node ID ad3fbed1dda575301c905dec59611b8b60c26cd0 # Parent a5c3a82d677e593ada2c3640ca1d174f962ea7ba mod_adhoc: Scan through list of items on load, in case items have been added before we were loaded diff -r a5c3a82d677e -r ad3fbed1dda5 plugins/adhoc/mod_adhoc.lua --- a/plugins/adhoc/mod_adhoc.lua Fri Jun 11 12:18:27 2010 +0100 +++ b/plugins/adhoc/mod_adhoc.lua Fri Jun 11 13:23:10 2010 +0100 @@ -58,10 +58,19 @@ end end, 500); +local function handle_item_added(item) + commands[item.node] = item; +end + module:hook("item-added/adhoc", function (event) - commands[event.item.node] = event.item; + return handle_item_added(event.item); end, 500); module:hook("item-removed/adhoc", function (event) commands[event.item.node] = nil; end, 500); + +-- Pick up any items that are already added +for _, item in ipairs(module:get_host_items("adhoc")) do + handle_item_added(item); +end