diff options
author | Kim Alvefur <zash@zash.se> | 2017-12-09 15:37:10 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-12-09 15:37:10 +0100 |
commit | 253cf6e86d69a70909d221d36f8261770e1f3feb (patch) | |
tree | a6c2f9ac628c6de8ff6590139c1acbc5ab4797a0 /plugins | |
parent | fd533f1aaedfef09ea27d981e865cc67946510c7 (diff) | |
parent | f535c57dd1b8d484da74686a75a83a763ba21be6 (diff) | |
download | prosody-253cf6e86d69a70909d221d36f8261770e1f3feb.tar.gz prosody-253cf6e86d69a70909d221d36f8261770e1f3feb.zip |
Merge 0.9->0.10
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/muc/muc.lib.lua | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/muc/muc.lib.lua b/plugins/muc/muc.lib.lua index 53b4f682..807fb2c3 100644 --- a/plugins/muc/muc.lib.lua +++ b/plugins/muc/muc.lib.lua @@ -189,9 +189,7 @@ function room_mt:send_history(to, stanza) end end function room_mt:send_subject(to) - if self._data['subject'] then - self:_route_stanza(st.message({type='groupchat', from=self._data['subject_from'] or self.jid, to=to}):tag("subject"):text(self._data['subject'])); - end + self:_route_stanza(st.message({type='groupchat', from=self._data['subject_from'] or self.jid, to=to}):tag("subject"):text(self._data['subject'])); end function room_mt:get_disco_info(stanza) |