We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3bbfbb commit 1788f06Copy full SHA for 1788f06
src/main/java/org/jitsi/jicofo/recording/jibri/JibriSession.java
@@ -490,10 +490,10 @@ private void handleJibriStatusUpdate(
490
jibriStatus = newStatus;
491
logger.info("Got Jibri status update: Jibri " + jibriJid + " has status " + newStatus +
492
" and failure reason " + failureReason);
493
- if (jibriJid != currentJibriJid)
+ if (jibriJid.compareTo(currentJibriJid) != 0)
494
{
495
logger.info("This status update is from " + jibriJid +
496
- "but the current Jibri is " + currentJibriJid + ", ignoring");
+ " but the current Jibri is " + currentJibriJid + ", ignoring");
497
return;
498
}
499
// First: if we're no longer pending (regardless of the Jibri's new state), make sure we stop
0 commit comments