fix: speakerstats_component, attempt to index (a nil value)

This commit is contained in:
emrah 2020-10-05 17:32:48 +03:00 committed by Дамян Минков
parent 830817d7b4
commit da33d8a033
1 changed files with 9 additions and 0 deletions

View File

@ -40,6 +40,11 @@ function on_message(event)
log("warn", "No room found %s", roomAddress);
return false;
end
if not room.speakerStats then
log("warn", "No speakerStats found for %s", roomAddress);
return false;
end
local roomSpeakerStats = room.speakerStats;
local from = event.stanza.attr.from;
@ -187,6 +192,10 @@ function occupant_leaving(event)
if is_healthcheck_room(room.jid) then
return;
end
if not room.speakerStats then
return;
end
local occupant = event.occupant;