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
436b90e3
Commit
436b90e3
authored
Oct 01, 2014
by
daryl herzmann
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #74 from Redor/openfire
MUC Service Plugin update to 0.2.3
parents
a64b567d
e40e4daf
Changes
3
Show 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 @
436b90e3
...
...
@@ -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 @
436b90e3
...
...
@@ -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 @
436b90e3
...
...
@@ -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
();
...
...
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