aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authordaurnimator <quae@daurnimator.com>2014-03-28 20:25:10 -0400
committerdaurnimator <quae@daurnimator.com>2014-03-28 20:25:10 -0400
commit672d0fae0b9b785bc2a1def3143b4978fd379201 (patch)
tree2dec4b9ff4299644d7e66166c0f32e2d0c58ea31 /plugins
parent7cbdc2b0f7570ca06ff5e8561b09cb5bc64c8a1f (diff)
downloadprosody-672d0fae0b9b785bc2a1def3143b4978fd379201.tar.gz
prosody-672d0fae0b9b785bc2a1def3143b4978fd379201.zip
plugins/muc/muc.lib: Subjects get sent even if empty.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/muc/muc.lib.lua17
1 files changed, 6 insertions, 11 deletions
diff --git a/plugins/muc/muc.lib.lua b/plugins/muc/muc.lib.lua
index c1747440..7704a099 100644
--- a/plugins/muc/muc.lib.lua
+++ b/plugins/muc/muc.lib.lua
@@ -424,26 +424,21 @@ end
function room_mt:get_subject()
return self._data['subject'], self._data['subject_from']
end
-local function create_subject_message(subject)
- return st.message({type='groupchat'})
+local function create_subject_message(from, subject)
+ return st.message({from = from; type = "groupchat"})
:tag('subject'):text(subject):up();
end
function room_mt:send_subject(to)
- local from, subject = self:get_subject()
- if subject then
- local msg = create_subject_message(subject)
- msg.attr.from = from
- msg.attr.to = to
- self:route_stanza(msg);
- end
+ local msg = create_subject_message(self:get_subject());
+ msg.attr.to = to;
+ self:route_stanza(msg);
end
function room_mt:set_subject(current_nick, subject)
if subject == "" then subject = nil; end
self._data['subject'] = subject;
self._data['subject_from'] = current_nick;
if self.save then self:save(); end
- local msg = create_subject_message(subject)
- msg.attr.from = current_nick
+ local msg = create_subject_message(current_nick, subject);
self:broadcast_message(msg, false);
return true;
end