From: Ken Rice Date: Thu, 27 Aug 2015 17:06:08 +0000 (-0500) Subject: FS-8066 Add encoded avatar url to userVariables so that mod_conference can use it... X-Git-Tag: v1.6.2~77^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3cedeaa67ebb25b0f7aa620aa530cac68311c0b3;p=thirdparty%2Ffreeswitch.git FS-8066 Add encoded avatar url to userVariables so that mod_conference can use it when no video, or video mute --- diff --git a/html5/verto/verto_communicator/src/vertoService/services/vertoService.js b/html5/verto/verto_communicator/src/vertoService/services/vertoService.js index e993869bc7..a4faf52704 100644 --- a/html5/verto/verto_communicator/src/vertoService/services/vertoService.js +++ b/html5/verto/verto_communicator/src/vertoService/services/vertoService.js @@ -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" } });