Software /
code /
prosody
Diff
plugins/muc/whois.lib.lua @ 7352:50b24b3476e6
MUC: Provide a noop stub room:save() method
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Thu, 14 Apr 2016 21:23:09 +0200 |
parent | 7075:47a2deb74b56 |
child | 7353:ca31d3271cf8 |
line wrap: on
line diff
--- a/plugins/muc/whois.lib.lua Tue Apr 12 19:35:55 2016 +0200 +++ b/plugins/muc/whois.lib.lua Thu Apr 14 21:23:09 2016 +0200 @@ -20,7 +20,7 @@ assert(valid_whois[whois], "Invalid whois value") if get_whois(room) == whois then return false; end room._data.whois = whois; - if room.save then room:save(true); end + room:save(true); return true; end