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:
Kim Alvefur 2022-07-20 13:08:07 +02:00
parent 55378f128a
commit cdd5608f4a

View file

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