Skip to content

Commit

Permalink
squash: Fix running media activity check for stopped calls.
Browse files Browse the repository at this point in the history
  • Loading branch information
damencho committed Apr 16, 2024
1 parent a978a57 commit 5431e34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/jitsi/jigasi/JvbConference.java
Original file line number Diff line number Diff line change
Expand Up @@ -2279,9 +2279,9 @@ private class MediaActivityChecker
public void run()
{
// if the call was stopped before we check ignore
if (!started)
if (!started || jvbCall == null)
{
logger.warn("Media activity checker exiting early as call is not started!");
logger.warn("Media activity checker exiting early as call is not started or jvbCall is stopped!");
return;
}

Expand Down

0 comments on commit 5431e34

Please sign in to comment.