From 3cedeaa67ebb25b0f7aa620aa530cac68311c0b3 Mon Sep 17 00:00:00 2001 From: Ken Rice Date: Thu, 27 Aug 2015 12:06:08 -0500 Subject: [PATCH] FS-8066 Add encoded avatar url to userVariables so that mod_conference can use it when no video, or video mute --- .../src/vertoService/services/vertoService.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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" } });