mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
moduleapi: Stricter type check for actor in permission check
Non-table but truthy values would trigger "attempt to index a foo value" on the next line otherwise
This commit is contained in:
parent
55378f128a
commit
cdd5608f4a
1 changed files with 1 additions and 1 deletions
|
@ -645,7 +645,7 @@ function api:may(action, context)
|
|||
end
|
||||
|
||||
local session = context.origin or context.session;
|
||||
if not session then
|
||||
if type(session) ~= "table" then
|
||||
error("Unable to identify actor session from context");
|
||||
end
|
||||
if session.type == "s2sin" or (session.type == "c2s" and session.host ~= self.host) then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue