Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
Openfire
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Openfire
Commits
e40e4daf
Commit
e40e4daf
authored
Oct 01, 2014
by
Roman S
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MUC Service Plugin update to 0.2.3
- Bug fix: Unable to join groupchat
parent
6d312043
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
2 deletions
+10
-2
changelog.html
src/plugins/mucservice/changelog.html
+5
-0
plugin.xml
src/plugins/mucservice/plugin.xml
+2
-2
MUCRoomController.java
...a/org/jivesoftware/openfire/plugin/MUCRoomController.java
+3
-0
No files found.
src/plugins/mucservice/changelog.html
View file @
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>
...
...
src/plugins/mucservice/plugin.xml
View file @
e40e4daf
...
...
@@ -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>
src/plugins/mucservice/src/java/org/jivesoftware/openfire/plugin/MUCRoomController.java
View file @
e40e4daf
...
...
@@ -247,6 +247,9 @@ public class MUCRoomController {
}
else
{
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
())
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment