mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-14 08:05:37 +00:00
FS-11068: [mod_conference] Avatar members not supported on personal canvas leading to miscount #resolve
This commit is contained in:
parent
d3aee10e28
commit
d8c3b3ab66
@ -343,8 +343,12 @@ void *SWITCH_THREAD_FUNC conference_thread_run(switch_thread_t *thread, void *ob
|
||||
members_seeing_video++;
|
||||
}
|
||||
|
||||
if (imember->avatar_png_img && !switch_channel_test_flag(channel, CF_VIDEO)) {
|
||||
members_with_avatar++;
|
||||
if (!conference_utils_test_flag(conference, CFLAG_PERSONAL_CANVAS)) {
|
||||
if (imember->avatar_png_img && !switch_channel_test_flag(channel, CF_VIDEO)) {
|
||||
members_with_avatar++;
|
||||
}
|
||||
} else {
|
||||
members_with_avatar = 0;
|
||||
}
|
||||
|
||||
if (conference_utils_member_test_flag(imember, MFLAG_NOMOH)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user