fix(conference-duration): Fixes formatting the creation time.

Fixes #14815.
This commit is contained in:
damencho
2024-06-27 13:31:04 +03:00
committed by Дамян Минков
parent d8079a4232
commit 9076fb3e4a

View File

@@ -25,7 +25,7 @@ function occupant_joined(event)
if participant_count > 1 then
if room.created_timestamp == nil then
room.created_timestamp = os.time() * 1000; -- Lua provides UTC time in seconds, so convert to milliseconds
room.created_timestamp = string.format('%i', os.time() * 1000); -- Lua provides UTC time in seconds, so convert to milliseconds
end
end
end