Skip to content

Commit

Permalink
fix(BridgeSession): add more bits to the id
Browse files Browse the repository at this point in the history
Adds more bits to the conference ID which should reduce the chances for
a conflict.
  • Loading branch information
paweldomas committed Feb 6, 2019
1 parent 5f62da0 commit 614a381
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2603,7 +2603,7 @@ class BridgeSession
*/
final String id
= JitsiMeetConferenceImpl.this.id
+ "_" +Integer.toHexString(RANDOM.nextInt(0x1_0000));
+ "_" +Integer.toHexString(RANDOM.nextInt(0x1_000000));

/**
* The list of participants in the conference which use this
Expand Down

0 comments on commit 614a381

Please sign in to comment.