fix: speakerstats_component, attempt to index (a nil value)
This commit is contained in:
parent
830817d7b4
commit
da33d8a033
|
@ -40,6 +40,11 @@ function on_message(event)
|
||||||
log("warn", "No room found %s", roomAddress);
|
log("warn", "No room found %s", roomAddress);
|
||||||
return false;
|
return false;
|
||||||
end
|
end
|
||||||
|
|
||||||
|
if not room.speakerStats then
|
||||||
|
log("warn", "No speakerStats found for %s", roomAddress);
|
||||||
|
return false;
|
||||||
|
end
|
||||||
|
|
||||||
local roomSpeakerStats = room.speakerStats;
|
local roomSpeakerStats = room.speakerStats;
|
||||||
local from = event.stanza.attr.from;
|
local from = event.stanza.attr.from;
|
||||||
|
@ -187,6 +192,10 @@ function occupant_leaving(event)
|
||||||
if is_healthcheck_room(room.jid) then
|
if is_healthcheck_room(room.jid) then
|
||||||
return;
|
return;
|
||||||
end
|
end
|
||||||
|
|
||||||
|
if not room.speakerStats then
|
||||||
|
return;
|
||||||
|
end
|
||||||
|
|
||||||
local occupant = event.occupant;
|
local occupant = event.occupant;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue