Skip to content

Commit

Permalink
Change roomId generation to prevent issues with jitsi
Browse files Browse the repository at this point in the history
  • Loading branch information
auterium committed Jun 7, 2018
1 parent ee97ee9 commit 7572135
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/methods/createDirectMessage.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Meteor.methods({
});
}

const rid = [me._id, to._id].sort().join('') + '_' + team;
const rid = [me._id, to._id].sort().join('') + team;

const now = new Date();

Expand Down

0 comments on commit 7572135

Please sign in to comment.