Skip to content

Commit

Permalink
OF-2918: Add option to clear history for a given MUC
Browse files Browse the repository at this point in the history
Implement the roomClearChatHistory event handler. Nothing is needed to be done in the OccupantManager for this event.
  • Loading branch information
“Huy committed Dec 6, 2024
1 parent 4e83456 commit 4ed359c
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -960,6 +960,11 @@ public void roomDestroyed(@Nonnull final JID roomJID)
}
}

@Override
public void roomClearChatHistory(JID roomJID) {
// Not used.
}

@Override
public void messageReceived(JID roomJID, JID user, String nickname, Message message) {
// Not used.
Expand Down

0 comments on commit 4ed359c

Please sign in to comment.