Commit e40e4daf authored by Roman S's avatar Roman S

MUC Service Plugin update to 0.2.3

- Bug fix: Unable to join groupchat 
parent 6d312043
...@@ -44,6 +44,11 @@ ...@@ -44,6 +44,11 @@
MUC Service Plugin Changelog MUC Service Plugin Changelog
</h1> </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> <p><b>0.2.2</b> -- 09.17.2014</p>
<ul> <ul>
<li>Room user roles can now be added and removed individually</li> <li>Room user roles can now be added and removed individually</li>
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<name>MUC Service</name> <name>MUC Service</name>
<description>MUC administration over REST Interface</description> <description>MUC administration over REST Interface</description>
<author>Roman Soldatow</author> <author>Roman Soldatow</author>
<version>0.2.2</version> <version>0.2.3</version>
<date>09.17.2014</date> <date>10.1.2014</date>
<minServerVersion>3.9.1</minServerVersion> <minServerVersion>3.9.1</minServerVersion>
</plugin> </plugin>
...@@ -248,6 +248,9 @@ public class MUCRoomController { ...@@ -248,6 +248,9 @@ public class MUCRoomController {
room.setModificationDate(new Date()); 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 // Save the room to the DB if the room should be persistant
if (room.isPersistent()) { if (room.isPersistent()) {
room.saveToDB(); 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