Compare commits

...

1 Commits

Author SHA1 Message Date
damencho
d69710f327 feat(visitors): Logs meetingId change in room. 2026-01-12 10:34:20 -06:00

View File

@@ -735,6 +735,7 @@ local function iq_from_main_handler(event)
-- if there is password supplied use it
-- if this is update it will either set or remove the password
room:set_password(node.attr.password);
module:log('info', 'Updating room meetingId old:%s new:%s', room._data.meetingId, node.attr.meetingId);
room._data.meetingId = node.attr.meetingId;
local createdTimestamp = node.attr.createdTimestamp;
room.created_timestamp = createdTimestamp and tonumber(createdTimestamp) or nil;