Software / code / prosody
Comparison
plugins/mod_muc.lua @ 827:e74045238ee3
MUC: Throw an error if we try talking to ourselves
| author | Waqas Hussain <waqas20@gmail.com> |
|---|---|
| date | Fri, 20 Feb 2009 00:51:33 +0500 |
| parent | 824:b6ee70721783 |
| child | 828:97ea39b7bf90 |
comparison
equal
deleted
inserted
replaced
| 826:27978a3f2c0c | 827:e74045238ee3 |
|---|---|
| 225 local from, to = stanza.attr.from, stanza.attr.to; | 225 local from, to = stanza.attr.from, stanza.attr.to; |
| 226 local room = jid_bare(to); | 226 local room = jid_bare(to); |
| 227 local current_nick = jid_nick:get(from, room); | 227 local current_nick = jid_nick:get(from, room); |
| 228 local type = stanza.attr.type; | 228 local type = stanza.attr.type; |
| 229 log("debug", "room: %s, current_nick: %s, stanza: %s", room or "nil", current_nick or "nil", stanza:top_tag()); | 229 log("debug", "room: %s, current_nick: %s, stanza: %s", room or "nil", current_nick or "nil", stanza:top_tag()); |
| 230 if (select(2, jid_split(from)) == muc_domain) error("Presence from the MUC itself!!!"); | |
| 230 if stanza.name == "presence" then | 231 if stanza.name == "presence" then |
| 231 local pr = get_filtered_presence(stanza); | 232 local pr = get_filtered_presence(stanza); |
| 232 pr.attr.from = current_nick; | 233 pr.attr.from = current_nick; |
| 233 if type == "error" then -- error, kick em out! | 234 if type == "error" then -- error, kick em out! |
| 234 if current_nick then | 235 if current_nick then |