FS-8066 Add encoded avatar url to userVariables so that mod_conference can use it when no video, or video mute

This commit is contained in:
Ken Rice 2015-08-27 12:06:08 -05:00
parent 7efc1f3bfb
commit 3cedeaa67e
1 changed files with 4 additions and 2 deletions

View File

@ -636,7 +636,8 @@ vertoService.service('verto', ['$rootScope', '$cookieStore', '$location', 'stora
dedEnc: data.useDedenc,
mirrorInput: data.mirrorInput,
userVariables: {
email : storage.data.email
email : storage.data.email,
avatar: "http://gravatar.com/avatar/" + md5(storage.data.email) + ".png?s=600"
}
});
@ -672,7 +673,8 @@ vertoService.service('verto', ['$rootScope', '$cookieStore', '$location', 'stora
dedEnc: data.useDedenc,
mirrorInput: data.mirrorInput,
userVariables: {
email : storage.data.email
email : storage.data.email,
avatar: "http://gravatar.com/avatar/" + md5(storage.data.email) + ".png?s=600"
}
});