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
632b3018
Commit
632b3018
authored
Oct 27, 2014
by
Dave Cridland
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #91 from akrherz/of812
OF-812 properly handle start attribute in list requests
parents
ec477dd9
20f365b7
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
3 deletions
+10
-3
changelog.html
src/plugins/monitoring/changelog.html
+5
-0
plugin.xml
src/plugins/monitoring/plugin.xml
+2
-2
JdbcPersistenceManager.java
.../openfire/plugin/archive/impl/JdbcPersistenceManager.java
+3
-1
No files found.
src/plugins/monitoring/changelog.html
View file @
632b3018
...
...
@@ -44,6 +44,11 @@
Monitoring Plugin Changelog
</h1>
<p><b>
1.4.3
</b>
-- Oct 27, 2014
</p>
<ul>
<li>
OF-812 properly handle the start attribute in list requests
</li>
</ul>
<p><b>
1.4.2
</b>
-- Apr 30, 2014
</p>
<ul>
<li>
ofConParticipant table name is case sensitive on linux+mysql
</li>
...
...
src/plugins/monitoring/plugin.xml
View file @
632b3018
...
...
@@ -5,8 +5,8 @@
<name>
Monitoring Service
</name>
<description>
Monitors conversations and statistics of the server.
</description>
<author>
Jive Software
</author>
<version>
1.4.
2
</version>
<date>
04/30
/2014
</date>
<version>
1.4.
3
</version>
<date>
10/27
/2014
</date>
<minServerVersion>
3.9.0
</minServerVersion>
<databaseKey>
monitoring
</databaseKey>
<databaseVersion>
2
</databaseVersion>
...
...
src/plugins/monitoring/src/java/com/reucon/openfire/plugin/archive/impl/JdbcPersistenceManager.java
View file @
632b3018
...
...
@@ -146,6 +146,8 @@ public class JdbcPersistenceManager implements PersistenceManager {
}
else
if
(
startDate
.
before
(
maxRetrievableDate
))
{
result
=
maxRetrievableDate
;
}
}
else
{
result
=
startDate
;
}
return
result
;
}
...
...
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