Skip to content

Commit 614a381

Browse files
committed
fix(BridgeSession): add more bits to the id
Adds more bits to the conference ID which should reduce the chances for a conflict.
1 parent 5f62da0 commit 614a381

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/jitsi/jicofo/JitsiMeetConferenceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2603,7 +2603,7 @@ class BridgeSession
26032603
*/
26042604
final String id
26052605
= JitsiMeetConferenceImpl.this.id
2606-
+ "_" +Integer.toHexString(RANDOM.nextInt(0x1_0000));
2606+
+ "_" +Integer.toHexString(RANDOM.nextInt(0x1_000000));
26072607

26082608
/**
26092609
* The list of participants in the conference which use this

0 commit comments

Comments
 (0)