Mercurial > prosody-hg
diff plugins/mod_uptime.lua @ 1495:6c745a108e68
mod_uptime: Use time of server start rather than module load
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Wed, 08 Jul 2009 04:22:45 +0100 |
| parents | bdfa5274e111 |
| children | 841d61be198f |
line wrap: on
line diff
--- a/plugins/mod_uptime.lua Wed Jul 08 04:22:15 2009 +0100 +++ b/plugins/mod_uptime.lua Wed Jul 08 04:22:45 2009 +0100 @@ -13,7 +13,7 @@ local jid_split = require "util.jid".split; local t_concat = table.concat; -local start_time = os.time(); +local start_time = prosody.start_time; module:add_feature("jabber:iq:last");
