Skip to content

Commit

Permalink
igniterealtime#195 Updated to Openfire 4.7.0-SNAPSHOT and fixed a com…
Browse files Browse the repository at this point in the history
…pile error caused by changed interface.
  • Loading branch information
Emiel van der Herberg committed Oct 26, 2021
1 parent 421b6e3 commit 6fe03a2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions changelog.html
Expand Up @@ -49,6 +49,7 @@ <h1>
<li>[<a href='https://github.com/igniterealtime/openfire-monitoring-plugin/issues/125'>Issue #125</a>] - Combining keyword and date range makes search fail</li>
<li>[<a href='https://github.com/igniterealtime/openfire-monitoring-plugin/issues/190'>Issue #190</a>] - Allow code-update to force a reindexation</li>
<li>[<a href='https://github.com/igniterealtime/openfire-monitoring-plugin/issues/192'>Issue #192</a>] - Combining keyword and participant(s) makes search fail</li>
<li>[<a href='https://github.com/igniterealtime/openfire-monitoring-plugin/issues/195'>Issue #195</a>] - Class incompatibility with latest OF MUC</li>
</ul>

<p><b>2.2.1</b> -- February 12, 2021</p>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>plugins</artifactId>
<groupId>org.igniterealtime.openfire</groupId>
<version>4.4.0</version>
<version>4.7.0-SNAPSHOT</version>
</parent>
<groupId>org.igniterealtime.openfire.plugins</groupId>
<artifactId>monitoring</artifactId>
Expand Down
Expand Up @@ -95,7 +95,7 @@ public void occupantLeft(JID roomJID, JID user, String nickname) {
public void nicknameChanged(JID roomJID, JID user, String oldNickname, String newNickname) {
// Process this event in the senior cluster member or local JVM when not in a cluster
if (ClusterManager.isSeniorClusterMember()) {
occupantLeft(roomJID, user);
occupantLeft(roomJID, user, oldNickname);
// Sleep 1 millisecond so that there is a delay between logging out and logging in
try {
Thread.sleep(1);
Expand Down

0 comments on commit 6fe03a2

Please sign in to comment.