Software /
code /
prosody
Diff
plugins/muc/subject.lib.lua @ 7353:ca31d3271cf8
MUC: Save room to storage once after form processing, not in each individual setter
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 15 Apr 2016 11:50:55 +0200 |
parent | 7352:50b24b3476e6 |
child | 7357:d69521003e91 |
line wrap: on
line diff
--- a/plugins/muc/subject.lib.lua Thu Apr 14 21:23:09 2016 +0200 +++ b/plugins/muc/subject.lib.lua Fri Apr 15 11:50:55 2016 +0200 @@ -25,7 +25,6 @@ changesubject = changesubject and true or nil; if get_changesubject(room) == changesubject then return false; end room._data.changesubject = changesubject; - room:save(true); return true; end @@ -61,7 +60,6 @@ if old_subject == subject and old_from == from then return false; end room._data.subject_from = from; room._data.subject = subject; - room:save(); local msg = create_subject_message(from, subject); room:broadcast_message(msg); return true;