Merge 0.10->trunk
[prosody.git] / plugins / mod_lastactivity.lua
index fabf07b478714df6c09a2132ec649ae2625611e3..2dd61699999dcf5a56fb44dd62a5f0b4514ffe22 100644 (file)
@@ -19,8 +19,7 @@ module:hook("pre-presence/bare", function(event)
        local stanza = event.stanza;
        if not(stanza.attr.to) and stanza.attr.type == "unavailable" then
                local t = os.time();
-               local s = stanza:child_with_name("status");
-               s = s and #s.tags == 0 and s[1] or "";
+               local s = stanza:get_child_text("status");
                map[event.origin.username] = {s = s, t = t};
        end
 end, 10);