Merge pull request #445 in FS/freeswitch from bugfix/FS-8066-url-for-avatar-not-being-passed-in to master

* commit '3cedeaa67ebb25b0f7aa620aa530cac68311c0b3':
  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:
Mike Jerris 2015-08-27 12:31:41 -05:00
commit eff8a1e648
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"
}
});