mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
core.moduleapi: Fix 'global' property via :context() - #1748
The 'global' property should reflect whether the module API instance represents the global context or a VirtualHost or Component context. However the module:context() method did not override this, leading the property of the previous module shining trough, leading to bugs in code relying on the 'global' property. See also #1736
This commit is contained in:
parent
93347db124
commit
9e5bf4fc48
1 changed files with 1 additions and 1 deletions
|
@ -307,7 +307,7 @@ end
|
|||
|
||||
|
||||
function api:context(host)
|
||||
return setmetatable({host=host or "*"}, {__index=self,__newindex=self});
|
||||
return setmetatable({ host = host or "*", global = "*" == host }, { __index = self, __newindex = self });
|
||||
end
|
||||
|
||||
function api:add_item(key, value)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue