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
ca122761
Commit
ca122761
authored
Mar 17, 2016
by
Christian Schudt
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #540 from guusdk/OF-1089
OF-1089: Send IQ result only after messages
parents
8c15db98
53083dc8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
3 deletions
+8
-3
changelog.html
src/plugins/monitoring/changelog.html
+5
-0
plugin.xml
src/plugins/monitoring/plugin.xml
+1
-1
IQQueryHandler.java
...eucon/openfire/plugin/archive/xep0313/IQQueryHandler.java
+2
-2
No files found.
src/plugins/monitoring/changelog.html
View file @
ca122761
...
@@ -44,6 +44,11 @@
...
@@ -44,6 +44,11 @@
Monitoring Plugin Changelog
Monitoring Plugin Changelog
</h1>
</h1>
<p><b>
1.5.2
</b>
-- Feb 15, 2016
</p>
<ul>
<li>
[
<a
href=
'https://igniterealtime.org/issues/browse/OF-1089'
>
OF-1089
</a>
] - Send IQ result only after messages.
</li>
</ul>
<p><b>
1.5.1
</b>
-- Feb 15, 2016
</p>
<p><b>
1.5.1
</b>
-- Feb 15, 2016
</p>
<ul>
<ul>
<li>
[
<a
href=
'https://igniterealtime.org/issues/browse/OF-1087'
>
OF-1087
</a>
] - Fixed namespace handling (BOSH).
</li>
<li>
[
<a
href=
'https://igniterealtime.org/issues/browse/OF-1087'
>
OF-1087
</a>
] - Fixed namespace handling (BOSH).
</li>
...
...
src/plugins/monitoring/plugin.xml
View file @
ca122761
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<name>
Monitoring Service
</name>
<name>
Monitoring Service
</name>
<description>
Monitors conversations and statistics of the server.
</description>
<description>
Monitors conversations and statistics of the server.
</description>
<author>
Jive Software
</author>
<author>
Jive Software
</author>
<version>
1.5.
1
</version>
<version>
1.5.
2
</version>
<date>
2/15/2016
</date>
<date>
2/15/2016
</date>
<minServerVersion>
4.0.0
</minServerVersion>
<minServerVersion>
4.0.0
</minServerVersion>
<databaseKey>
monitoring
</databaseKey>
<databaseKey>
monitoring
</databaseKey>
...
...
src/plugins/monitoring/src/java/com/reucon/openfire/plugin/archive/xep0313/IQQueryHandler.java
View file @
ca122761
...
@@ -76,8 +76,6 @@ public class IQQueryHandler extends AbstractIQHandler implements
...
@@ -76,8 +76,6 @@ public class IQQueryHandler extends AbstractIQHandler implements
}
}
}
}
sendAcknowledgementResult
(
packet
,
session
);
final
QueryRequest
queryRequest
=
new
QueryRequest
(
packet
.
getChildElement
(),
archiveJid
);
final
QueryRequest
queryRequest
=
new
QueryRequest
(
packet
.
getChildElement
(),
archiveJid
);
Collection
<
ArchivedMessage
>
archivedMessages
=
retrieveMessages
(
queryRequest
);
Collection
<
ArchivedMessage
>
archivedMessages
=
retrieveMessages
(
queryRequest
);
...
@@ -87,6 +85,8 @@ public class IQQueryHandler extends AbstractIQHandler implements
...
@@ -87,6 +85,8 @@ public class IQQueryHandler extends AbstractIQHandler implements
sendFinalMessage
(
session
,
queryRequest
);
sendFinalMessage
(
session
,
queryRequest
);
sendAcknowledgementResult
(
packet
,
session
);
return
null
;
return
null
;
}
}
...
...
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