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

Fixes #14815.
fix-p2p-codecs jitsi-meet_9593
damencho 11 months ago committed by Дамян Минков
parent d8079a4232
commit 9076fb3e4a
  1. 2
      resources/prosody-plugins/mod_conference_duration.lua

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

Loading…
Cancel
Save