Skip to content
Snippets Groups Projects
Commit 55e0f2b7 authored by Ramon Souza's avatar Ramon Souza
Browse files

added comments

parent 1a032e4b
No related branches found
No related tags found
No related merge requests found
...@@ -64,6 +64,8 @@ const Adapter = () => { ...@@ -64,6 +64,8 @@ const Adapter = () => {
useEffect(() => { useEffect(() => {
window.addEventListener(EVENT_NAME, () => { window.addEventListener(EVENT_NAME, () => {
/* needed to prevent an issue with dupĺicated messages when user role is changed
more info: https://github.com/bigbluebutton/bigbluebutton/issues/11842 */
if (prevUserData.role && prevUserData?.role !== currentUserData?.role) { if (prevUserData.role && prevUserData?.role !== currentUserData?.role) {
dispatch({ dispatch({
type: ACTIONS.CLEAR_STREAM_MESSAGES, type: ACTIONS.CLEAR_STREAM_MESSAGES,
...@@ -82,6 +84,8 @@ const Adapter = () => { ...@@ -82,6 +84,8 @@ const Adapter = () => {
}, [Meteor.status().connected, syncStarted, Auth.userID]); }, [Meteor.status().connected, syncStarted, Auth.userID]);
/* needed to prevent an issue with dupĺicated messages when user role is changed
more info: https://github.com/bigbluebutton/bigbluebutton/issues/11842 */
useEffect(() => { useEffect(() => {
if (users[Auth.meetingID]) { if (users[Auth.meetingID]) {
if (currentUserData?.role !== users[Auth.meetingID][Auth.userID].role) { if (currentUserData?.role !== users[Auth.meetingID][Auth.userID].role) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment