diff --git a/react/features/base/jwt/middleware.js b/react/features/base/jwt/middleware.js index a81047f3f..b9d2f0e2e 100644 --- a/react/features/base/jwt/middleware.js +++ b/react/features/base/jwt/middleware.js @@ -52,7 +52,7 @@ MiddlewareRegistry.register(store => next => action => { */ function _overwriteLocalParticipant( { dispatch, getState }, - { avatarURL, email, name, features }) { + { avatarURL, email, id: jwtId, name, features }) { let localParticipant; if ((avatarURL || email || name) @@ -68,6 +68,9 @@ function _overwriteLocalParticipant( if (email) { newProperties.email = email; } + if (jwtId) { + newProperties.jwtId = jwtId; + } if (name) { newProperties.name = name; } diff --git a/react/features/reactions/functions.any.js b/react/features/reactions/functions.any.js index 7e1952c7d..d2a94eb82 100644 --- a/react/features/reactions/functions.any.js +++ b/react/features/reactions/functions.any.js @@ -55,6 +55,8 @@ export async function sendReactionsWebhook(state: Object, reactions: Array