diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-04-25 20:36:55 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-04-25 20:36:55 +0100 |
commit | accfe4c6a51f0c8d27d3fee37e0fad77f7010b17 (patch) | |
tree | b7d4f7e33701c49b63f4a1623412c4b7bbbefe6a /plugins/muc | |
parent | 331b6c3647eef7344ade532cf3f315be386712be (diff) | |
download | prosody-accfe4c6a51f0c8d27d3fee37e0fad77f7010b17.tar.gz prosody-accfe4c6a51f0c8d27d3fee37e0fad77f7010b17.zip |
MUC: add __tostring on room metatable
Diffstat (limited to 'plugins/muc')
-rw-r--r-- | plugins/muc/muc.lib.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/muc/muc.lib.lua b/plugins/muc/muc.lib.lua index b6167a19..3af8c766 100644 --- a/plugins/muc/muc.lib.lua +++ b/plugins/muc/muc.lib.lua @@ -88,6 +88,10 @@ local function getText(stanza, path) return getUsingPath(stanza, path, true); en local room_mt = {}; room_mt.__index = room_mt; +function room_mt:__tostring() + return "MUC room ("..self.jid..")"; +end + function room_mt:get_default_role(affiliation) if affiliation == "owner" or affiliation == "admin" then return "moderator"; |