Fixing remote avatars to be the same as local one.

This commit is contained in:
damencho 2016-01-14 13:04:21 -06:00
parent 809f68104d
commit b875dc62dc
1 changed files with 2 additions and 2 deletions

View File

@ -174,7 +174,7 @@ UI.initConference = function () {
}
// Make sure we configure our avatar id, before creating avatar for us
UI.setUserAvatar(id, settings.email || settings.uid);
UI.setUserAvatar(id, settings.email);
Toolbar.checkAutoEnableDesktopSharing();
};
@ -382,7 +382,7 @@ UI.addUser = function (id, displayName) {
UIUtil.playSoundNotification('userJoined');
// Configure avatar
UI.setUserAvatar(id, displayName);
UI.setUserAvatar(id);
// Add Peer's container
VideoLayout.addParticipantContainer(id);