Skip to content

Commit

Permalink
Fixes following review
Browse files Browse the repository at this point in the history
  • Loading branch information
Fishbowler committed Jul 6, 2022
1 parent 969ed3b commit 5bab10a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ <h1>
Monitoring Plugin Changelog
</h1>

<p><b>2.3.1</b> -- (tbd)</p>
<ul>
<li>[<a href='https://github.com/igniterealtime/openfire-monitoring-plugin/issues/222'>Issue #222</a>] - Updates to use non-deprecated Openfire methods</li>
</ul>

<p><b>2.3.0</b> -- January 19, 2022</p>
<ul>
<li>Requires Openfire 4.7.0</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ private String formatJID(boolean html, JID jid) {
if (html) {
UserManager userManager = UserManager.getInstance();
if (XMPPServer.getInstance().isLocal(jid) &&
userManager.isRegisteredUser(jid, true)) {
userManager.isRegisteredUser(jid, false)) {
formattedJID = "<a href='/user-properties.jsp?username=" +
jid.getNode() + "'>" + jid.toBareJID() + "</a>";
}
Expand Down

0 comments on commit 5bab10a

Please sign in to comment.