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:
Kim Alvefur 2022-04-27 17:18:46 +02:00
parent 93347db124
commit 9e5bf4fc48

View file

@ -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)