Skip to content

Commit

Permalink
fix: Fixes wrong check for room.
Browse files Browse the repository at this point in the history
  • Loading branch information
damencho committed Nov 9, 2024
1 parent dc190a0 commit b80d3df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/jitsi/jigasi/JvbConference.java
Original file line number Diff line number Diff line change
Expand Up @@ -2339,7 +2339,7 @@ public void sendMessageToRoom(String messageString)

public void sendMessageToRoomInternal(String messageString)
{
if (isInTheRoom())
if (!isInTheRoom())
{
logger.error(this.callContext + " Cannot send message as chatRoom is null");
return;
Expand Down

0 comments on commit b80d3df

Please sign in to comment.