Commit 436b90e3 authored by daryl herzmann's avatar daryl herzmann

Merge pull request #74 from Redor/openfire

MUC Service Plugin update to 0.2.3
parents a64b567d e40e4daf
......@@ -44,6 +44,11 @@
MUC Service Plugin Changelog
</h1>
<p><b>0.2.3</b> -- 10.01.2014</p>
<ul>
<li>Bug fix: Unable to join groupchat (reported here: https://igniterealtime.jiveon.com/thread/53577)</li>
</ul>
<p><b>0.2.2</b> -- 09.17.2014</p>
<ul>
<li>Room user roles can now be added and removed individually</li>
......
......@@ -5,7 +5,7 @@
<name>MUC Service</name>
<description>MUC administration over REST Interface</description>
<author>Roman Soldatow</author>
<version>0.2.2</version>
<date>09.17.2014</date>
<version>0.2.3</version>
<date>10.1.2014</date>
<minServerVersion>3.9.1</minServerVersion>
</plugin>
......@@ -248,6 +248,9 @@ public class MUCRoomController {
room.setModificationDate(new Date());
}
// Unlock the room, because the default configuration lock the room.
room.unlock(room.getRole());
// Save the room to the DB if the room should be persistant
if (room.isPersistent()) {
room.saveToDB();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment