mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
fix: undefined participant in avatar call
This commit is contained in:
committed by
Zoltan Bettenbuk
parent
f90fc665f8
commit
658679f89e
@@ -39,7 +39,7 @@ MiddlewareRegistry.register(store => next => action => {
|
||||
|
||||
const result = next(action);
|
||||
|
||||
if (participant.loadableAvatarUrl !== loadableAvatarUrl) {
|
||||
if (participant && (participant.loadableAvatarUrl !== loadableAvatarUrl)) {
|
||||
APP.API.notifyAvatarChanged(
|
||||
id,
|
||||
loadableAvatarUrl
|
||||
|
||||
Reference in New Issue
Block a user